// JavaScript Document



function couleur(obj) {
 obj.style.backgroundColor = "#FFFFFF";
}
function check() {
var msg = "";

if (document.formulaire.nom.value.length == "" && document.formulaire.prenom.value.length == "")	{
	msg += "Veuillez remplir votre nom et.ou votre prénom\n";
	document.formulaire.nom.style.backgroundColor = "#ce0000";
	document.formulaire.prenom.style.backgroundColor = "#ce0000";
}
if (document.formulaire.tel.value == "")	{
	msg += "Veuillez saisir votre numéro de téléphone\n";
	document.formulaire.tel.style.backgroundColor = "#ce0000";
}
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 = "#ce0000";
		msg += "Votre adresse e-mail est incorrecte\n";
	}
}
else {
	msg += "Veuillez saisir votre adresse e-mail\n";
	document.formulaire.mail.style.backgroundColor = "#ce0000";
}
alert(msg);
if (msg == "") return(true);
else	{
	alert(msg);
	return(false);
}
}
