function MiseABlanc(obj)
{
	obj.style.backgroundColor = "#FFFFFF";
}

function verifFrmContact()
{
	var msg = "";
	if(document.frmContact.nom.value == "")
	{
		document.frmContact.nom.style.backgroundColor = "#CC0000";
		msg += "\n- votre nom";
	}
	if(document.frmContact.email.value == "")
	{
		document.frmContact.email.style.backgroundColor = "#CC0000";
		msg += "\n- votre email";
	}
	else
	{
		var emailReg = new RegExp("^\\w[\\w+\.\-]*@[\\w\-]+\.\\w[\\w+\.\-]*\\w$", "gi");
		if(document.frmContact.email.value.search(emailReg)==-1)
		{
			document.frmContact.email.style.backgroundColor = "#CC0000";
			msg += "\n- votre email";
		}
	}
	
	if(document.frmContact.demande.value == "")
	{
		document.frmContact.demande.style.backgroundColor = "#CC0000";
		msg += "\n- votre message";
	}
	
	if(msg == "") return(true);
	else
	{
		msg = "Veuillez saisir correctement :" + msg;
		alert(msg);
		return(false);
	}
}
