// JavaScript Document
function getLoginInfoXMLRequester( ){
var LoginInfoXmlHttp=false;
    try{
        if( window.ActiveXObject ){
            for( var i = 5; i; i-- ){
                try{
                    if( i == 2 ){
LoginInfoXmlHttp = new ActiveXObject( "Microsoft.XMLHTTP" );    
                    }else{
LoginInfoXmlHttp = new ActiveXObject( "Msxml2.XMLHTTP." + i + ".0" );	
LoginInfoXmlHttp.setRequestHeader("Content-Type","text/xml");
LoginInfoXmlHttp.setRequestHeader("Content-Type","gb2312");
                 }
break;}
                catch(e){                        
                    LoginInfoXmlHttp = false;
                }
            }
        }else if( window.XMLHttpRequest ){
            LoginInfoXmlHttp = new XMLHttpRequest();
            if (LoginInfoXmlHttp.overrideMimeType) {
                LoginInfoXmlHttp.overrideMimeType('text/xml');
            }
        }
    }catch(e){
        LoginInfoXmlHttp = false;
    }
    return LoginInfoXmlHttp ;
}

function gettopinfo()
{
	LoginInfoXmlHttp=getLoginInfoXMLRequester();
//var goodsNum=document.all("goodsNumList").value;
 LoginInfoXmlHttp.open("post","/creathtml/ajax/getlogin_topinfo.asp",true);
 LoginInfoXmlHttp.onreadystatechange= getLoginInfoStateChange;
 LoginInfoXmlHttp.send("content");
// KeyXmlHttp.setRequestHeader("content","100");
}
function getLoginInfoStateChange()
{
  	if (LoginInfoXmlHttp.readyState == 4)
	{
    document.getElementById("gettopinfo").innerHTML=LoginInfoXmlHttp.responseText;
	}
	else
	document.getElementById("gettopinfo").innerHTML=" ";
}