// 页面顶部用户登录验证
function chkForm_login1()
{
  if (document.login1.uname.value  == "")
	 {
		alert("请输入您的用户名!!    ");
		document.login1.uname.focus();
		return false;
	}
  else
  if (document.login1.pswd.value  == "")
	{
		alert("请输入您的密码!!    ");
		document.login1.pswd.focus();
		return false;
	}
  else
		return true;
}

