xmlhttp=new XMLHttpRequest();


function BezoekersOpvragen()
{
	xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    	document.getElementById("bezoekersdiv").innerHTML=xmlhttp.responseText;
    }
  }
	xmlhttp.open("GET","bezoekers.php",true);
	xmlhttp.send();
}
stopwru = setInterval("BezoekersOpvragen()",5000);

