<!--
function couleur(obj) {
     obj.style.backgroundColor = "";
}

function check() {
	var msg = "";

		if (document.form2.Email2.value != "")	{
		indexAroba = document.form2.Email2.value.indexOf('@');
		indexPoint = document.form2.Email2.value.indexOf('.');
		if ((indexAroba < 0) || (indexPoint < 0))		{
		document.form2.Email2.style.backgroundColor = "";
			msg += "Le mail est incorrect\n";
		}
	}
	else	{
		document.form2.Email2.style.backgroundColor = "";
		msg += "Veuillez saisir votre mail.\n";
	}


	if (msg == "") return(true);
	else	{
		alert(msg);
		return(false);
	}
}
//-->
