function couleur(obj) {
     obj.style.backgroundColor = "#FFFFFF";
}
function check() {
	var msg = "";
if (document.contacts.name.value == "")	{
		msg += "Veuillez saisir votre nom\n";
		/*document.contacts.name.style.backgroundColor = "#FFCCBB";*/
	}
if (document.contacts.phone.value == "")	{
		msg += "Veuillez saisir un numéro de téléphone valide\n";
		/*document.contacts.phone.style.backgroundColor = "#FFCCBB";*/
	}
if (document.contacts.message.value == "")	{
		msg += "Veuillez nous indiquer votre demande\n";
		/*document.contacts.message.style.backgroundColor = "#FFCCBB";*/
	}

if (document.contacts.email.value != "")	{
		indexAroba = document.contacts.email.value.indexOf('@');
		indexPoint = document.contacts.email.value.indexOf('.');
		if ((indexAroba < 0) || (indexPoint < 0))		{
			/*document.contacts.email.style.backgroundColor = "#FFCCBB";*/
			msg += "Veuillez saisir une adresse email valide : nom@domaine.com\n";
		}
	}
	else	{
		/*document.contacts.email.style.backgroundColor = "#FFCCBB";*/
		msg += "Veuillez saisir votre adresse email\n";
	}
	
	if (msg == "") {
	return(true);
	
	}
	else	{
		alert(msg);
		return(false);
		/*Modalbox.show('message-envoye.php', {title: this.title, method: 'post', params: Form.serialize('contacts') }); return false;*/
	}
}