function contact(id)
{
	xmlhttp=GetXmlHttpObject()
		if (xmlhttp==null)
		{
			alert ("Your browser does not support XMLHTTP! get firefox!");
			return;
		}	

xmlhttp.onreadystatechange=function()
	{
		if(xmlhttp.readyState==4)
		{
			document.getElementById(id).innerHTML=xmlhttp.responseText;
		}
	}
	xmlhttp.open("GET","scripts/php/time.php",true);
	xmlhttp.send(null);
}
