function GetXMLHTTP(){
	var _xmlhttp=false;

	//@if (@_jscript_version >= 5)
	// JScript gives us Conditional compilation, we can cope with old IE versions.
	// and security blocked creation of the objects.

	try {
		_xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
	} catch (e) {
		try {
			_xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		} catch (E) {
			_xmlhttp = false;
		}
	}

	if (!_xmlhttp && typeof XMLHttpRequest!='undefined') {
		_xmlhttp = new XMLHttpRequest();
	}

	return _xmlhttp;
}

//var xmlhttp = GetXMLHTTP();

/*
xmlhttp.open("HEAD", "/faq/index.html",true);
xmlhttp.onreadystatechange=function() {
	if (xmlhttp.readyState==4) {
		alert(xmlhttp.getAllResponseHeaders())
		alert("File was last modified on - " + xmlhttp.getResponseHeader("Last-Modified"))
	}
}
xmlhttp.send(null)
*/

/*
xmlhttp.open("GET", "test.php?var=uggabugga",true);
xmlhttp.onreadystatechange=function() {
	if (xmlhttp.readyState==4) {
		alert(xmlhttp.responseText)
	}
}
xmlhttp.send(null);*/
