function MM_openBrWindow(theURL,winName,features) { //v2.0
  var nWindow= window.open(theURL,winName,features);
  nWindow.focus();
  };
function downloadLinks(pars,DIV) {      
    var oXmlHttp = zXmlHttp.createRequest();    
    oXmlHttp.open("get",pars, true);
     var divAdditionalLinks = document.getElementById(DIV);
    oXmlHttp.onreadystatechange = function () {
        if (oXmlHttp.readyState == 4) {
            if (oXmlHttp.status == 200) {               
                divAdditionalLinks.innerHTML = oXmlHttp.responseText;          
            } 
        }
        else
        {
         divAdditionalLinks.innerHTML="Êý¾Ý¼ÓÔØÖÐ¡­¡­";        
        }   
    }
    oXmlHttp.send(null);
};
//function onloand()
//{
//downloadLinks('newsAjax.aspx?count=0&len=40','news');
//downloadLinks('InfoAjax.aspx?count=0&len=40&key=','info');
//setInterval("downloadLinks('Count.aspx','count')",1000);
//}
  

