function validate(){
  var sErr = '';
  var oInput = null;
 
    if (document.mainform.courriel.value == "") {
    sErr += 'Veuillez entrer votre courriel.\n';
    oInput = document.mainform.courriel;
  }
  
  if (document.mainform.nom.value == "") {
    sErr += 'Veuillez entrer votre nom.\n';
    oInput = document.mainform.nom;
  }
  
   if (document.mainform.commentaire.value == "") {
    sErr += 'Veuillez entrer votre question ou commentaire.\n';
    oInput = document.mainform.commentaire;
  }

    if (sErr.length > 0) {
        // there was at least one error, output them
        alert(sErr);
        // something needs focus, set it there
        if (oInput)	oInput.focus();
        return false;
    } else {     return true;
    }
}