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

	if (document.f.nom.value == "" && document.f.prenom.value == "")	{
		msg += "Veuillez saisir votre nom ou votre prénom\n";
		document.f.nom.style.backgroundColor = "#F3C200";
		document.f.prenom.style.backgroundColor = "#F3C200";
	}
	if (document.f.tel.value == "" && document.f.portable.value == "")	{
		msg += "Veuillez saisir votre téléphone\n";
		document.f.tel.style.backgroundColor = "#F3C200";
		document.f.portable.style.backgroundColor = "#F3C200";
	}
	if (document.f.mail.value != "")	{
		indexAroba = document.f.mail.value.indexOf('@');
		indexPoint = document.f.mail.value.indexOf('.');
		if ((indexAroba < 0) || (indexPoint < 0))		{
		document.f.mail.style.backgroundColor = "#F3C200";
			msg += "Le email est incorrect\n";
		}
	}
	else	{
		document.f.mail.style.backgroundColor = "#F3C200";
		msg += "Veuillez saisir votre email\n";
	}
		
	if (msg == "") {
		return(true);
		}
	else	{
		alert(msg);
		return(false);
	}
}

function valid_tel(evt) {
	var keyCode = evt.which ? evt.which : evt.keyCode;
	var interdit = 'azertyuiopqsdfghjklmwxcvbnàâäãçéèêëìîïòôöõùûüñ -+&*?!:;.,\t#~"^¨%$£?²¤§%*()[]{}<>|\\/`\'';
	if (interdit.indexOf(String.fromCharCode(keyCode)) >= 0) {
		return false;
	}
}