<!--
  function checkform(theForm)
  {
    if(theForm.first.value=="")
    {
      alert ("Please enter your First Name")
      return false;
    }
    if(theForm.last.value=="")
    {
      alert ("Please enter your Last Name")
      return false;
    }
    if(theForm.email.value=="")
    {
      alert ("Please enter your E-mail")
      return false;
    }
    return true;
  }
  //-->