function CheckLoginForm(){
  if(document.myForm.username.value==""){
	  alert("UserName field don't be allowed to set null!");
	  return false;
  }
  if(document.myForm.password.value==""){
	  alert("Password field don't be allowed to set null!");
	  return false;
  }
  if (document.myForm.username.value!="" && document.myForm.password.value!="")
  {
	  document.myForm.submit();
  }
  /*
  if(document.myForm.verify.value==""){
     alert("VerifyCode field don't be allowed to set null!");
	 return;
  }
  */
}

function FindLoginForm(){
	 if(document.myForm.username.value==""){
		  alert("UserName field don't be allowed to set null!");
		  return false;
	  }else{
		  return true;
	  }
}