var xmlhttp
		function createxmlhttp()
		{
		if(window.ActiveXObject)
		{
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")
		}
		else
		{
		xmlhttp=new XMLHttpRequest()
		}
		}
		function getdata()
		{
		createxmlhttp()
		var url="loadpage.htm"
		xmlhttp.open("get",url,true)
		xmlhttp.onreadystatechange=handle
		xmlhttp.send(null)
		}
		function handle()
		{
		if(xmlhttp.readyState==4)
			{
			if(xmlhttp.status==200)
				{
				var setinfo=document.getElementById("setinfo")
				setinfo.innerHTML=xmlhttp.responseText
				}
		
			}
		}
		getdata()
