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 = "#ff9999";
			msg += "- Syntaxe de l'email incorrecte\n";
		}
	}
	else	{
		document.formulaire.mail.style.backgroundColor = "#ff9999";
		msg += "- Veuillez saisir votre mail.\n";
	}
 
if (document.formulaire.nom.value == "")	{
		msg += "- Veuillez saisir votre nom\n";
		document.formulaire.nom.style.backgroundColor = "#ff9999";
	}
 
if (document.formulaire.prenom.value == "")	{
		msg += "- Veuillez saisir votre prenom\n";
		document.formulaire.prenom.style.backgroundColor = "#ff9999";
	}

	if (msg == "") return(true);
	else	{
		alert(msg);
		return(false);
	}
}
