<!--

  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.strAddress.value == "" )
    {
      alert("You must enter your address.");     
      return false;
    }

    if( document.contact.strCity.value == "" )
    {
      alert("You must enter your city.");     
      return false;
    }

    if( document.contact.strState.value == 0 )
    {
      alert("You must enter your state.");     
      return false;
    }

    if( document.contact.strZip.value == "" )
    {
      alert("You must enter your Zip code.");     
      return false;
    }

    if( document.contact.strPhone.value == "" )
    {
      alert("You must enter your phone number.");     
      return false;
    }

    if( document.contact.intType.value == 0 )
    {
      alert("You must select an e-mail recipient.");     
      return false;
    }

    if( document.contact.txtComments.value == "" )
    {
      alert("You must enter a comment.");     
      return false;
    }

    return true;
  }




// -->