<!--

  function CheckContact( )
  {
    if( document.contact.strEmail.value == "" || document.contact.strEmail.value.search("@") == -1  || document.contact.strEmail.value.indexOf(".") == -1 ) 
    {
      alert("You must enter a valid email address.");
      return false;
    }

    if( document.contact.strFname.value == "" )
    {
      alert("You must enter your first name.");     
      return false;
    }

    if( document.contact.strLname.value == "" )
    {
      alert("You must enter your last name.");     
      return false;
    }

    if( document.contact.strCompany.value == "" )
    {
      alert("You must enter your company name.");     
      return false;
    }

    if( document.contact.intIndustry.value == 0 )
    {
      alert("You must select an industry.");     
      return false;
    }

    if( document.contact.txtComments.value == "" )
    {
      alert("You must enter a comment.");     
      return false;
    }

    return true;
  }



// -->