function FrontPage_Form1_Validator(theForm)
{
  if (theForm.firstname.value == "")
  {
    alert("Please enter your first name.");
    theForm.firstname.focus();
    return (false);
  }

  if (theForm.firstname.value.length < 1)
  {
    alert("Please enter your first name.");
    theForm.firstname.focus();
    return (false);
  }

  if (theForm.lastname.value == "")
  {
    alert("Please enter your last name.");
    theForm.lastname.focus();
    return (false);
  }

  if (theForm.lastname.value.length < 1)
  {
    alert("Please enter your last name.");
    theForm.lastname.focus();
    return (false);
  }

    
  if (theForm.email.value == "")
  {
    alert("Please select your e-mail.");
    theForm.email.focus();
    return (false);
  }

  if (theForm.comments.value == "")
  {
    alert("Please select your comments.");
    theForm.comments.focus();
    return (false);
  }

  return true
}

