function signinshort_Validator(theForm)
{

  if (theForm.username.value == "")
  {
    alert("Please enter your email address.");
    theForm.username.focus();
    return (false);
  }

  if ((theForm.username.value.indexOf('@',0) == -1) || (theForm.username.value.indexOf('.',0) == -1))
  {
    alert("Email Address is incorrectly formatted. Please enter again.");
    theForm.username.focus();
    return (false);
  }

  if (theForm.password.value == "")
  {
    alert("Please enter your Password.");
    theForm.password.focus();
    return (false);
  }

  return (true);
}
