<!--
function Form_Validator(theForm)
{

  if (theForm.Contact.value == "")
  {
    alert("Please enter a value for the \"Name\" field.");
    theForm.Contact.focus();
    return (false);
  }

  if (theForm.Contact.value.length < 1)
  {
    alert("Please enter at least 1 characters in the \"Name\" field.");
    theForm.Contact.focus();
    return (false);
  }

  if (theForm.Email.value == "")
  {
    alert("Please enter a value for the \"Email\" field.");
    theForm.Email.focus();
    return (false);
  }

  if (theForm.Email.value.length < 1)
  {
    alert("Please enter at least 1 characters in the \"Email\" field.");
    theForm.Email.focus();
    return (false);
  }

  return (true);
}
//-->