//'------------------------------------------------------------------------------------------
//' js-shell.js (Shell)
//' Version 1.0
//'------------------------------------------------------------------------------------------
//' Copyright Surfocracy Ltd, 2009, Contact: info@surfocracy.com
//'------------------------------------------------------------------------------------------
//' Description: Shell javascript functions.
//'------------------------------------------------------------------------------------------
//   
//--------------------------------------------------------------------------------------
// This function Validates the Account login form fields.
// pwchars = the minimum password characters
//--------------------------------------------------------------------------------------
function ValidateAccountLoginForm(myForm, pwchars) {
  var errorString="";
  if ((myForm.Email.value=="") || (myForm.RegistrationPassword.value=="")) {
    errorString = errorString + ErrAllCompulsoryFieldsRequired;
  }
  if (myForm.RegistrationPassword.value.length < pwchars) {
         myForm.RegistrationPassword.focus();
          errorString = errorString + "\n   " + ErrMinimumPasswordCharactersOf + pwchars
  }
  if (errorString!="") {
    alert(errorString);
    return false;
  } else {
    return true;
  }
}
