function FrontPage_Form1_Validator(theForm)
{

  if (theForm.Login.value == "")
  {
    alert("Please enter a value for the \" User Name\" field.");
    theForm.Login.focus();
    return (false);
  }


 if (theForm.Pass.value == "")
  {
    alert("Please enter a value for the \"Password\" field.");
    theForm.Pass.focus();
    return (false);
  }
 return (true);
}