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

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

		}
