// <!--

  function CheckContact() 
  {
    if (document.contactform.strEmail.value == "" || document.contactform.strEmail.value.search("@") == -1 || document.contactform.strEmail.value.indexOf(".") == -1) {
      alert("You must enter a valid e-mail address.");
      return false;
    }

    if (document.contactform.txtComments.value == "") {
      alert("You must enter a comment.");
      return false;
    }

    return true;    
  }


// -->
