<!--
function FrontPage_Form1_Validator(theForm)
{

  if (theForm.name.value == "")
  {
    alert("Please tell us your name.");
    theForm.name.focus();
    return (false);
  }

  if (theForm.emailaddress.value == "")
  {
    alert("Please give us your email address.");
    theForm.emailaddress.focus();
    return (false);
  }

  if (theForm.telephone.value == "")
  {
    alert("Please give us your telephone number");
    theForm.telephone.focus();
    return (false);
  }
  return (true);
}
//-->

