function get_XML_Requester()
{
	var x = null;
	if (window.ActiveXObject)
	{
		x = new ActiveXObject("Microsoft.XMLHTTP");
		if (x == null)
		{
			x = new ActiveXObject("Microsoft.XMLHTTP");
		}
	}
	if (window.XMLHttpRequest)
	{
		
		x = new XMLHttpRequest();
	}
	
	return x;
}











