﻿function $(id){
	return document.getElementById(id);
}
function loadXMLDoc(ementid,url){
    var xmlhttp;
    
    if (window.XMLHttpRequest){
        xmlhttp=new XMLHttpRequest();
    }else if (window.ActiveXObject){
        xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
    
    xmlhttp.onreadystatechange=function(){
       if (xmlhttp.readyState==4){
            if (xmlhttp.status==200){
                $(ementid).innerHTML=xmlhttp.responseText;
            }else{
                $(ementid).innerHTML='网络不通';
            }
        }
    };
    xmlhttp.open("GET",url,true);
    xmlhttp.send(null);
}
