	function initXMLHTTPRequest()
	{
		var xRequest=null;
		if (window.XMLHttpRequest)
		{
			xRequest=new XMLHttpRequest();
		}
		else if (window.ActiveXObject)
		{
			xRequest=new ActiveXObject("Microsoft.XMLHTTP");
		}
		return xRequest;
	}
