function checkloginfo(){
	var xmlhttp;
	try{
		xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");
	}catch (e){
		try{
			xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
		}catch (e){ 
			try{
				xmlhttp=new XMLHttpRequest();
			}catch (e){}
		}
	}
	//΄΄½¨ΗλΗσ
	xmlhttp.open("get","/logins.asp?&t=" + new Date().getTime());
	xmlhttp.onreadystatechange=function(){
		if(xmlhttp.readyState==4){
			if(xmlhttp.status==200){
				msg=xmlhttp.responseText;
			}else{
				msg="Failed to Connect";
				}
				var ch=document.getElementById("loginfo");
				ch.innerHTML=msg; 
			}
		}
	xmlhttp.send(null);  
	return false;
} 
