function color(obj) {
	var bgcolor = document.form.nom.style.backgroundColor;
     	obj.style.backgroundColor = bgcolor;
}

function check() {
	var bgcolor = "#F3C200";
	var msg = "";
	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.backgroundColor = bgcolor;
			msg += "Le mail est incorrect !\n";
		}
	}else{
		document.form.mail.style.backgroundColor = bgcolor;
		msg += "Veuillez saisir votre mail !\n";
	}
	if (document.form.raison.value == "")	{
		msg += "Veuillez saisir votre raison sociale !\n";
		document.form.raison.style.backgroundColor = bgcolor;
	}
	if (document.form.code.value == ""){
		msg += "Veuillez saisir votre code postal !\n";
		document.form.code.style.backgroundColor = bgcolor;
	}
	if(!valid_captcha()){
		msg += "Veuillez vérifier votre calcul !\n";
		document.form.calcul.style.backgroundColor = bgcolor;
	}
	if (msg == ""){
		document.form.submit();
		return(true);
	}else{
		alert(msg);
		return(false);
	}
}


var a = Math.ceil(Math.random() * 10);
var b = Math.ceil(Math.random() * 10);       
var c = a + b
function valid_captcha(){
	var d = document.getElementById('calcul').value;
	if (d == c)
		return true;        
	return false;
}

