var xmlbool = 0;
var xmlhttp =false;
function createXMLHttpRequest() {
var xmlhttp = false;
if(window.XMLHttpRequest){
xmlhttp = new XMLHttpRequest();
if(xmlhttp.overrideMimeType){
xmlhttp.overrideMimeType('text/xml');
}
xmlbool = 2;
}
else{
try{
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
xmlbool=1;
}catch(e){
try{
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlbool=1;
}catch(E){
xmlhttp = false;
xmlbool =0;
}
}
}
return xmlhttp;
}