function validateView(theForm) {

 if (theForm.p_login_id.value == "")
   {
      alert('Please enter User Name or Social Security Number.');
      theForm.p_login_id.focus();
      theForm.p_login_id.select();
      return false;
   }

 if (theForm.p_password.value == "")
   {
      alert('Please enter a Password or Birthdate(MMDDYYYY)!');
      theForm.p_password.focus();
      theForm.p_password.select();
      return false;
   }

return true;
}


