function checkLoginID(ty)
{
				if(ty==1)
				{
					if(document.userLogin.keyword.value=="")
					{
					alert("请检查您输入企业关键字，关键字为空！");
					return;
					}
					document.userLogin.action="/member/member_list.aspx";
				}
				else
				{
					if(document.userLogin.userid.value=="")
					{
					alert("请检查您输入的帐号，帐号为空！");
					return;
					}
					if(document.userLogin.pass.value=="")
					{
					alert("请检查您输入的密码，密码为空！");
					return;
					}
					document.userLogin.action="/administrator/check_Login.aspx";
				}
				document.userLogin.submit();
}
var AlertInput = "请输入:\n\n";	
function Login(form){
	var mesg = "";
	if(form.name.value == "") mesg += "用户\n";
	if(form.passwd.value == "") mesg += "密码\n";
	if(mesg != ""){
		mesg = AlertInput + mesg;
		alert(mesg);
		return false;
	}

	form.action = "http://mail.szkz.com/igenus/login.php?Cmd=login";
	form.submit();
}

function adminlogin(){
  document.logon.username.value="postmaster";
  document.logon.action="http://mail.szkz.com/cgi-bin/qmailadmin" ;
  document.logon.submit();
}