function couleur(obj) {
     obj.style.backgroundColor = "#FFFFFF";
}

function check() {
	var msg = "";

		if (document.leadcap.email1.value != "")	{
		indexAroba = document.leadcap.email1.value.indexOf('@');
		indexPoint = document.leadcap.email1.value.indexOf('.');
		if ((indexAroba < 0) || (indexPoint < 0))		{
		document.leadcap.email1.style.backgroundColor = "#F3C200";
			msg += "Le mail est incorrect\n";
		}
	}
	else	{
		document.leadcap.email1.style.backgroundColor = "#F3C200";
		msg += "Veuillez saisir votre mail.\n";
	}

if (document.leadcap.last_name.value == "")	{
		msg += "Veuillez saisir votre nom\n";
		document.leadcap.last_name.style.backgroundColor = "#F3C200";
	}

if (document.leadcap.first_name.value == "")	{
		msg += "Veuillez saisir votre prénom\n";
		document.leadcap.first_name.style.backgroundColor = "#F3C200";
	}

if (document.leadcap.account_name.value == "")	{
		msg += "Veuillez saisir le nom de votre société\n";
		document.leadcap.account_name.style.backgroundColor = "#F3C200";
	}
	
if (document.leadcap.phone_work.value == "")	{
		msg += "Veuillez saisir votre numéro de téléphone\n";
		document.leadcap.phone_work.style.backgroundColor = "#F3C200";
	}



	
	if (msg == "") return(true);
	else	{
		alert(msg);
		return(false);
	}
}