Hola
La función getXmlHttpObject() cambila por esto
Código Javascript
:
Ver originalfunction getXmlHttpObject(){
var xmlhttps = ["Msxml2.XMLHTTP","Msxml2.XMLHTTP.4.0","Msxml2.XMLH TTP.5.0","Msxml2.XMLHTTP.3.0","Microsoft.XMLHTTP"];
var xmlhttp = false;
for(var i=0 ; !xmlhttp && i<xmlhttps.length ; i++){
try{
xmlhttp = new ActiveXObject(xmlhttps[i]); // Internet Explorer
}
catch(e) {
xmlhttp = false;
}
}
if(!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp = new XMLHttpRequest(); // Firefox, Opera 8.0+, Safari
}
return xmlhttp;
}
Suerte