Funziona, finalmente!!

giusto se puo' essere di aiuto ad altri lo scrivo:

var Pagina = "http://www.google.it";
var oHTTPReq = new XMLHttpRequest();
oHTTPReq.open("GET", Pagina, false);
oHTTPReq.setRequestHeader("Content-Type", "text");
oHTTPReq.send(null);
if(oHTTPReq.status == 200)
var strRc=oHTTPReq.responseText;




Grazie, ancora