/*function couleur(obj) {
     obj.style.backgroundColor = "#FFFFFF";
}*/
function check() {
	var msg = "";
if (document.form.nom.value == "")	{
		msg += "Veuillez saisir votre nom\n";
		<!--document.form.nom.style.backgroundColor = "#FFCCBB";-->
	}
if (document.form.prenom.value == "")	{
		msg += "Veuillez saisir votre prénom\n";
		<!--document.form.prenom.style.backgroundColor = "#FFCCBB";-->
	}
if (document.form.telephone.value == "")	{
		msg += "Veuillez saisir votre numéro de téléphone\n";
		<!--document.form.telephone.style.backgroundColor = "#FFCCBB";-->
	}
	
if (document.form.objet.value == "")	{
		msg += "Veuillez saisir un objet\n";
		<!--document.form.telephone.style.backgroundColor = "#FFCCBB";-->
	}
	
if (document.form.message.value == "")	{
		msg += "Veuillez saisir votre message\n";
		<!--document.form.message.style.backgroundColor = "#FFCCBB";-->
	}
if (document.form.email.value != "")	{
		indexAroba = document.form.email.value.indexOf('@');
		indexPoint = document.form.email.value.indexOf('.');
		if ((indexAroba < 0) || (indexPoint < 0))		{
			<!--document.form.email.style.backgroundColor = "#FFCCBB";-->
			msg += "Veuillez saisir une adresse email valide : nom@domaine.com\n";
		}
	}
	else	{
		<!--document.form.email.style.backgroundColor = "#FFCCBB";-->
		msg += "Veuillez saisir votre adresse email\n";
	}
	if (msg == "") return(true);
	else	{
		alert(msg);
		return(false);
	}
}

//-->
