<!--
function couleur(obj) {
     obj.style.backgroundColor = "#FFFFFF";
}

function check() {
	var msg = "";

		if (document.inscription.email.value != "")	{
		indexAroba = document.inscription.email.value.indexOf('@');
		indexPoint = document.inscription.email.value.indexOf('.');
		if ((indexAroba < 0) || (indexPoint < 0))		{
		document.inscription.email.style.backgroundColor = "#F3C200";
			msg += "L'email renseigné est incorrect\n";
		}
	}
	else	{
		document.inscription.email.style.backgroundColor = "#F3C200";
		msg += "Veuillez saisir votre email.\n";
	}

if (document.inscription.nom.value == "")	{
		msg += "Merci de renseigner votre nom.\n";
		document.inscription.nom.style.backgroundColor = "#F3C200";
	}

if (document.inscription.prenom.value == "")	{
		msg += "Merci de renseigner votre prénom.\n";
		document.inscription.prenom.style.backgroundColor = "#F3C200";
	}
if (document.inscription.adresse.value == "")	{
		msg += "Veuillez saisir votre adresse.\n";
		document.inscription.adresse.style.backgroundColor = "#F3C200";
	}
if (document.inscription.cp.value == "")	{
		msg += "Veuillez saisir votre code postal.\n";
		document.inscription.cp.style.backgroundColor = "#F3C200";
	}
if (document.inscription.ville.value == "")	{
		msg += "Veuillez saisir votre ville.\n";
		document.inscription.ville.style.backgroundColor = "#F3C200";
	}
if (document.inscription.pays.value == "")	{
		msg += "Merci de renseigner votre pays.\n";
		document.inscription.pays.style.backgroundColor = "#F3C200";
	}
	
if ( (document.inscription.reglement[0].checked=="") &&  (document.inscription.reglement[1].checked=="") ) {
		msg += "Vous n'avez pas sélectionner votre mode de règlement.\n";
	}
		if (msg == "") return(true);
	else	{
		alert(msg);
		return(false);
	}
}
//-->