<!--
// Account Form Validator
function Account_Form_Validator(theForm)
{

  if (theForm.user_client.value == "")
  {
    alert("Please Enter Your Company or Organization Name.");
    theForm.user_client.focus();
    return (false);
  } 

  if (theForm.user_username.value == "")
  {
    alert("Please Enter Your Username.");
    theForm.user_username.focus();
    return (false);
  }

 if (theForm.user_password.value == "")
  {
    alert("Please Enter Your Password.");
    theForm.user_password.focus();
    return (false);
  }

  return (true);
}
//-->
