function do_it(){
if(obj.readyState==4){
document.write(obj.responseText);
}
}

function include(url){
obj=new ActiveXObject("Microsoft.XMLHTTP");
obj.onreadystatechange=do_it;
obj.open("GET", url, false);
obj.send(null);
}