//checklogin
function getlogin(){
	var xmlhttp;
	var str;
	var sendstr="";
	var url="/js/new_login.asp";
	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;
			document.getElementById("checklogin").innerHTML=str;
			}else{
			//alert("系统错误,如有疑问,请与管理员联系!"+xmlhttp.status);
			}
		  }
	}
	xmlhttp.open("get",url,true);
	xmlhttp.send(sendstr);
}

function getlogin2(){
	var xmlhttp;
	var str;
	var sendstr="";
	var url="/js/new_login2.asp";
	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;
			document.getElementById("checklogin2").innerHTML=str;
			}else{
			//alert("系统错误,如有疑问,请与管理员联系!"+xmlhttp.status);
			}
		  }
	}
	xmlhttp.open("get",url,true);
	xmlhttp.send(sendstr);
}

function getlogin3(){
	var xmlhttp;
	var str;
	var sendstr="";
	var url="/js/new_login3.asp";
	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;
			document.getElementById("checklogin3").innerHTML=str;
			}else{
			//alert("系统错误,如有疑问,请与管理员联系!"+xmlhttp.status);
			}
		  }
	}
	xmlhttp.open("get",url,true);
	xmlhttp.send(sendstr);
}

function getPagetop(){
	var xmlhttp;
	var str;
	var sendstr="";
	var url="/js/top1.asp";
	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;
			document.getElementById("sitetop").innerHTML=str;
			}else{
			//alert("系统错误,如有疑问,请与管理员联系!"+xmlhttp.status);
			}
		  }
	}
	xmlhttp.open("get",url,true);
	xmlhttp.send(sendstr);
}