codice:
function sendRequest(src,method) {  // legge ciò che restituisce offerte.php

var req=false; 
        try {
                req = new ActiveXObject('Msxml2.xmlhttp'); //Try the first kind of active x object??
        } catch (e) {
                try {
                        req = new ActiveXObject('Microsoft.xmlhttp'); //Try the second kind of active x object
            } catch (E) {
                req = false;
            }
        }
        if (!req && typeof xmlhttpRequest != 'undefined') {
                req = new xmlhttpRequest();           //If we were able to get a working active x object, start an xmlhttpRequest
        }
  req.open(method, src);
  req.onreadystatechange = function(){
    if(req.readyState == 4){
.....
}else{
      alert("error code: " + req.status);
    }
  }
  req.send(null);
}
In questo codice c'è qualcosa di sbagliato ? perchè fino a ieri funzionava...ma oggi mi da che xmlhttprequest = false !!! perchè ??