try {
	xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e1) {
	try {
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	} catch (e2) {
		xmlhttp = null;
	}
}

if (! xmlhttp) {
	if (typeof XMLHttpRequest != "undefined") {
		xmlhttp = new XMLHttpRequest();
	}
}

function createXMLHttpRequest()
{
    if (window.ActiveXObject) {
        xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
    }
    else if (window.XMLHttpRequest) {
        xmlHttp = new XMLHttpRequest();
    }
}