// JavaScript Document
function couleur(obj) {
      obj.style.backgroundColor = "#FFFFFF";
 }

 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 = "#CFF7FF";
          msg += "Le mail est incorrect\n";
       }
    }
    else   {
       document.formulaire.mail.style.backgroundColor = "#CFF7FF";
       msg += "Veuillez saisir votre email.\n";
    }

 if (document.formulaire.nom.value == "")   {
       msg += "Veuillez saisir votre nom\n";
       document.formulaire.nom.style.backgroundColor = "#CFF7FF";
    }

 if (document.formulaire.prenom.value == "")   {
       msg += "Veuillez saisir votre prénom\n";
       document.formulaire.prenom.style.backgroundColor = "#CFF7FF";
    }

 if (document.formulaire.tel.value == "")   {
       msg += "Veuillez saisir votre numéro de téléphone";
       document.formulaire.tel.style.backgroundColor = "#CFF7FF";
    }

    if (msg == "") return(true);
    else   {
       alert(msg);
       return(false);
    }
 }