// JavaScript Document
var req = null;
if (typeof XMLHttpRequest != "undefined")
	req = new XMLHttpRequest();
if (!req && typeof ActiveXObject != "undefined")
{
	try
	{
		req=new ActiveXObject("Msxml2.XMLHTTP");
	}
	catch (e)
	{
		try
		{
			req=new ActiveXObject("Microsoft.XMLHTTP");
		}
		catch (e2)
		{
			try {
				req=new ActiveXObject("Msxml2.XMLHTTP.4.0");
			}
			catch (e3)
			{
				req=null;
			}
		}
	}
}

function callpage(url)
{
	req.open("GET",url ,false);
	req.send(null);
	var result = req.responseText;
	return result;
}