function getlogin(){
	var xmlhttp;
	var str;
	var sendstr="";
	var url="/js/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("sitelogin").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/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("sitelogin2").innerHTML=str;
			}else{
			//alert("系统错误,如有疑问,请与管理员联系!"+xmlhttp.status);
			}
		  }
	}
	xmlhttp.open("get",url,true);
	xmlhttp.send(sendstr);
}

function getannou(){
	var xmlhttp;
	var str;
	var sendstr="";
	var url="/js/siteannou.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("siteannou").innerHTML=str;
			}else{
			//alert("系统错误,如有疑问,请与管理员联系!"+xmlhttp.status);
			}
		  }
	}
	xmlhttp.open("get",url,true);
	xmlhttp.send(sendstr);
}

function getindexqq(){
	var xmlhttp;
	var str;
	var sendstr="";
	var url="/js/indexkf.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("sitekf").innerHTML=str;
			}else{
			//alert("系统错误,如有疑问,请与管理员联系!"+xmlhttp.status);
			}
		  }
	}
	xmlhttp.open("get",url,true);
	xmlhttp.send(sendstr);
}

function getPageEnd(){
	var xmlhttp;
	var str;
	var sendstr="";
	var url="/js/foot.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("siteEND").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/top.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);
}