4 if(window.XMLHttpRequest)
6 xmlhttp=new XMLHttpRequest();
10 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
12 xmlhttp.onreadystatechange=function()
14 if(xmlhttp.readyState==4 && xmlhttp.status==200)
16 document.getElementById("date").innerHTML=xmlhttp.responseText;
19 xmlhttp.open("GET", "changedate.php",true);