function GetRequest(UrlPath)
{
	var XmlHttp;
	XmlHttp = HttpObj();
	XmlHttp.open("get",UrlPath,true);	
	XmlHttp.send(null);
}

function HttpObj(){
	var XmlHttp = null;
	try{
		XmlHttp= new ActiveXObject('Msxml2.XMLHTTP');
	}catch(e){
		try{
			XmlHttp= new ActiveXObject('Microsoft.XMLHTTP');
		}catch(e){
			try{
				XmlHttp= new XMLHttpRequest();
			}catch(e){}
		}
	}
	if (XmlHttp) return XmlHttp;
}


