function aniversariantes_show(url){
   var ajax_aniversariantes;
   try {
      ajax_aniversariantes=new XMLHttpRequest();
   } catch (e) {
      try {
         ajax_aniversariantes=new ActiveXObject("Msxml2.XMLHTTP");
      } catch (e) {
         try {
            ajax_aniversariantes=new ActiveXObject("Microsoft.XMLHTTP");
         } catch (e) {
            alert("Seu navegador não possui suporte ao AJAX!");
            return false;
         }
      }
   }
   ajax_aniversariantes.onreadystatechange=function() {
      if(ajax_aniversariantes.readyState==4) {
			if (ajax_aniversariantes.status == 200){
				document.getElementById("aniversariantes_show").innerHTML = ajax_aniversariantes.responseText;
			}else{
				document.getElementById("aniversariantes_show").innerHTML = "Falha no carregamento...";						
			}
      }
   }
   ajax_aniversariantes.open("GET",url,true);
   ajax_aniversariantes.send(null);
}

function aniversariantes(){
	var url = "tripla_1.php";
	aniversariantes_show(url);
 	setTimeout(aniversariantes, 15000);
}