function couleur(obj) {
     obj.style.backgroundColor = "#aefeaf";
}
 
function check() {
  var msg = "";
 
    if (document.formulaire.mail.value != "")  {
    indexAroba = document.formulaire.mail.value.indexOf('@');
    indexPoint = document.formulaire.mail.value.indexOf('.');
    if ((indexAroba < 0) || (indexPoint < 0))    {
    document.formulaire.mail.style.backgroundColor = "#F3C200";
      msg += "Le mail est incorrect\n";
    }
  }
  else  {
    document.formulaire.mail.style.backgroundColor = "#F3C200";
    msg += "Veuillez saisir votre mail.\n";
  }
 
if (document.formulaire.nom.value == "")  {
    msg += "Veuillez saisir votre nom\n";
    document.formulaire.nom.style.backgroundColor = "#F3C200";
  }
 
if (document.formulaire.prenom.value == "")  {
    msg += "Veuillez saisir votre prenom\n";
    document.formulaire.prenom.style.backgroundColor = "#F3C200";
  }
 
  if (msg == "") return(true);
  else  {
    alert(msg);
    return(false);
  }
}


