function chklogin() {


if(formlogin.user_name.value=="")
	{
	  alert("请输入您的用户名！")
	  formlogin.user_name.focus()
	  return false
	 }
	 
if(formlogin.user_pass.value=="")
	{
	  alert("请输入您的密码！")
	  formlogin.user_pass.focus()
	  return false
	 }

return true;
}

