function GetXmlHttpObject()
{ 
	var objXMLHttp=null

	if(window.XMLHttpRequest) // client use Firefox, Opera etc - Non Microsoft product
		  {
				try
				{
					objXMLHttp = new XMLHttpRequest();
				}
				catch(e)
				{
					objXMLHttp = false;
				}
		 }
		 else if(window.ActiveXObject) // client use Internet Explorer
		 {
				try
				{
					objXMLHttp = new ActiveXObject("Msxml2.XMLHTTP");
				}
				catch(e)
				{
					try
					{
						objXMLHttp = new ActiveXObject("Microsoft.XMLHTTP");
					}
					catch(e)
					{
						objXMLHttp = false;
					}
				}
		}
		else
		{
				objXMLHttp = false;
		}
	
	return objXMLHttp;
}
