function CreateXmlHttpRequestObject()
{
	var theXmlHttpObj;
	if(window.XMLHttpRequest)
	{
		theXmlHttpObj = new XMLHttpRequest();
	}
	else
	{
		try
		{
			theXmlHttpObj = new ActiveXObject("Microsoft.XMLHTTP");
		}
		catch(e)
		{
			theXmlHttpObj = new ActiveXObject("Msxml2.XMLHTTP");
		}
	}
	
	return theXmlHttpObj;
}