// JavaScript Document

function validationFormulaireEstimation() {
	
	var nbreErreur = 0;
	var html = new Array();

	if (document.forms['formulaire'].nom.value =="") {
		document.getElementById('id_nom').style['backgroundColor']="#900";
		document.getElementById('id_nom').style['color']="#ffffff";
		nbreErreur = 1;
		}
	else  {
		document.getElementById('id_nom').style['backgroundColor']="#000";
		document.getElementById('id_nom').style['color']="#fff";
		}
	
	if (document.forms['formulaire'].adresse.value =="") {
		document.getElementById('id_adresse').style['backgroundColor']="#900";
		document.getElementById('id_adresse').style['color']="#ffffff";
		nbreErreur = 1;
	}
	else {
		document.getElementById('id_adresse').style['backgroundColor']="#000";
		document.getElementById('id_adresse').style['color']="#fff";
		}
	
	if (document.forms['formulaire'].codePostal.value =="") {
		document.getElementById('id_codePostalVille').style['backgroundColor']="#900";
		document.getElementById('id_codePostalVille').style['color']="#ffffff";
		nbreErreur = 1;
		}
	else {
		document.getElementById('id_codePostalVille').style['backgroundColor']="#000";
		document.getElementById('id_codePostalVille').style['color']="#fff";
		}
	
	if (document.forms['formulaire'].ville.value =="") {
		document.getElementById('id_codePostalVille').style['backgroundColor']="#900";
		document.getElementById('id_codePostalVille').style['color']="#ffffff";
		nbreErreur = 1;
		}
	else {
		document.getElementById('id_codePostalVille').style['backgroundColor']="#000";
		document.getElementById('id_codePostalVille').style['color']="#fff";
		}
		
	if (document.forms['formulaire'].telephone.value =="") {
		document.getElementById('id_telephone').style['backgroundColor']="#900";
		document.getElementById('id_telephone').style['color']="#ffffff";
		nbreErreur = 1;
		}
	else {
		document.getElementById('id_telephone').style['backgroundColor']="#000";
		document.getElementById('id_telephone').style['color']="#fff";
		}		
		
		
	if (document.forms['formulaire'].email.value =="") {
		document.getElementById('id_email').style['backgroundColor']="#900";
		document.getElementById('id_email').style['color']="#ffffff";
		nbreErreur = 1;
		}
	else {
		document.getElementById('id_email').style['backgroundColor']="#000";
		document.getElementById('id_email').style['color']="#fff";
		}		
	
	if (nbreErreur != 0) {
		document.getElementById('erreur').style['display'] = "block";
		return false;
	}
	else {
		return true;
	}
}

