<!--
function couleur(obj) {
     obj.style.backgroundColor = "#FFFFFF";
}

function check() {
	var msg = "";

		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 = "#FF9900";
			msg += "Le mail est incorrect\n";
		}
	}
	else	{
		document.form.Email.style.backgroundColor = "#FF9900";
		msg += "Veuillez saisir votre mail.\n";
	}

if (document.form.Name.value == "")	{
		msg += "Veuillez saisir votre Nom\n";
		document.form.Name.style.backgroundColor = "#FF9900";
	}
if (document.form.Comments.value == "")	{
		msg += "Veuillez saisir votre Message\n";
		document.form.Comments.style.backgroundColor = "#FF9900";
	}
	if (msg == "") return(true);
	else	{
		alert(msg);
		return(false);
	}
}
//-->
