<!--
function Validator(theForm)
{

  if (theForm.name.value == "")
  {
    alert("Please enter your Full Name.");
    theForm.name.focus();
    return (false);
  }

  if (theForm.email.value == "")
  {
    alert("Please enter your email address.");
    theForm.email.focus();
    return (false);
  }

  if (theForm.feedback.value == "")
  {
    alert("Please enter some text in the Feedback field.");
    theForm.feedback.focus();
    return (false);
  }
  return (true);
}
//-->
