<script Language="JavaScript">
<!--
function ValidateForm(theForm)
{

  if (theForm.Name.value == "")
  {
    alert("Please enter a value for the \"Name\" field.");
    theForm.Name.focus();
    return (false);
  }

  if (theForm.Email.value == "")
  {
    alert("Please enter a value for the \"E Mail\" field.");
    theForm.Email.focus();
    return (false);
  }

  if (theForm.Email.value.length < 4)
  {
    alert("Please enter at least 4 characters in the \"E Mail\" field.");
    theForm.Email.focus();
    return (false);
  }

  if (theForm.ProductInterest.value == "")
  {
    alert("Please enter a value for the \"Product Interest\" field.");
    theForm.ProductInterest.focus();
    return (false);
  }
  return (true);
}