<!--

  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.intType.value == 0 )
    {
      alert("You must select a topic.");     
      return false;
    }

    if( document.contact.txtComments.value == "" )
    {
      alert("You must enter a comment.");     
      return false;
    }

    return true;
  }




// -->