
function couleur(obj) {
     obj.style.borderColor = "#1f6798";
}

function check() {
	var msg = "";

	
if (document.form.nom.value == "")	{
		msg += "Veuillez saisir votre nom\n";
		document.form.nom.style.borderColor = "#FF0000";
	}


		if (document.form.mail.value != "")	{
		indexAroba = document.form.mail.value.indexOf('@');
		indexPoint = document.form.mail.value.indexOf('.');
		if ((indexAroba < 0) || (indexPoint < 0))		{
		document.form.mail.style.borderColor = "red";
			msg += "Le mail est incorrect\n";
		}
	}
	else	{
		document.form.mail.style.borderColor = "red";
		msg += "Veuillez saisir votre mail.\n";
	}



	if (document.form.message.value == "")	{
		msg += "Veuillez saisir votre message\n";
		document.form.message.style.borderColor = "red";
	}


	if (msg == "")	document.form.submit();
	else	alert(msg);
	
}
