function FrontPage_Form1_Validator(theForm)
{

  if ($('#Name').val() == '')
  {
    alert("Please enter a value for the \"Name\" field.");
    $('#Name').focus();
    return (false);
  }

  if ($('#E-Mail').val() == '')
  {
    alert("Please enter a value for the \"E-Mail Address\" field.");
    $('#E-Mail').focus();
    return (false);
  }
  return (true);
}

