function check() { 
      if (document.form.email.value == "") { 
        alert("e-mail obligatoire.\n");
        document.form.email.focus();
        return false;
      }
      if (document.form.realname.value == "") { 
        alert("nom obligatoire.\n");
        document.form.email.focus();
        return false;
      }
      if (document.form.comment.value == "") { 
        alert("Veuillez saisir un message SVP.\n");
        document.form.email.focus();
        return false;
      }
}
