	var xmlHttp = false;
	//var readComplete = false;
	function GetResponseByUrl(url)
	{

		try
		{
			xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e)
		{
			try
			{
			xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
			}
			catch(e2)
			{
			xmlHttp = false;
			}
		}
	//Open a connection to the server
	//alert(url);
	xmlHttp.open("GET", url, false);
	var response = xmlHttp.responseXML;
	xmlHttp.send(null);
	//Send the request
	return 	response;
	}


