function quit(){
				if(confirm("真的要退出系统吗?")){
					window.close();
				}
			}
			 
function Enregister(username)
{
	if(username==null||username=="")
  {
  alert("对不起！您还没有登录，不能使用此功能！");
  return false;
  }
	else
	{
		  return true;
     }
}
function refresh()
{
 
 parent.location.reload();
  
}