function index_top()
{
	var xmlhttp;
    var str;
    var sendstr="";
     try{
             xmlhttp=new XMLHttpRequest();
         }
	catch(e){
             xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
        }
	xmlhttp.onreadystatechange=function(){
          if (xmlhttp.readyState==4){
              if (xmlhttp.status==200){		
			   str = xmlhttp.responseText;	
			   if(str!="")
			   {	
			     document.getElementById("index_top").innerHTML=str;
			   }	
			   }else{
			   alert("系统错误,如有疑问,请与管理员联系!"+xmlhttp.status);
			 }
          }
       }
	xmlhttp.open("post","/config/top_index.asp",true);
	xmlhttp.setRequestHeader('content-type','application/x-www-form-urlencoded');
	xmlhttp.send(sendstr); 
}

function ifmanager(){
    var xmlhttp;
    var str;
    var sendstr="";
     try{
             xmlhttp=new XMLHttpRequest();
         }
	catch(e){
             xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
        }
	xmlhttp.onreadystatechange=function(){
          if (xmlhttp.readyState==4){
              if (xmlhttp.status==200){		
			   str = xmlhttp.responseText;	
			   if(str!="")
			   {	
			     document.getElementById("ifmanager1").href=str;
			   }	
			   }else{
			   alert("系统错误,如有疑问,请与管理员联系!"+xmlhttp.status);
			 }
          }
       }
	xmlhttp.open("post","/config/ifmanager.asp",true);
	xmlhttp.setRequestHeader('content-type','application/x-www-form-urlencoded');
	xmlhttp.send(sendstr); 
 }

function expdomain(){
    var xmlhttp;
	var str;
	var sendstr="";
	 try{
			 xmlhttp=new XMLHttpRequest();
		 }
	catch(e){
			 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
		}
	xmlhttp.onreadystatechange=function(){
		  if (xmlhttp.readyState==4){
			  if (xmlhttp.status==200){		
			   str = xmlhttp.responseText;	
			   if(str!="")
			   {	
				 document.getElementById("expdomain").innerHTML=str;
			   }	
			   }else{
			   alert("系统错误,如有疑问,请与管理员联系!"+xmlhttp.status);
			 }
		  }
	   }
	xmlhttp.open("post","/domain_reg/expdomain.asp",true);
	xmlhttp.setRequestHeader('content-type','application/x-www-form-urlencoded');
	xmlhttp.send(sendstr); 
 }
