que tal si pruebas con:
Código Javascript
:
Ver originalfunction getXMLHttpRequest() {
var xmlHttp;
try {
xmlHttp = new XMLHttpRequest();
} catch(e1) {
try {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch(e2) {
try {
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch(e3) {
xmlHttp = null;
}
}
}
return xmlHttp;
}
como siempre internet explorer poniendo trabas, tengo entendido que utiliza una directiva de ActiveXObject para navegadores antigüos y otro para más modernos.