﻿	function verif_saisie() {

		var valide=0;

		//Test du champ nom1
		if(document.getElementById('nom').value.length>1){
			document.getElementById('nom').style.backgroundColor="#f5f9fd";
			valide++;
		}
		else{
			document.getElementById('nom').style.backgroundColor="#ffdfdf";
		}

		//Test du champ telephone1
		if(document.getElementById('telephone').value.length>=10){
			document.getElementById('telephone').style.backgroundColor="#f5f9fd";
			valide++;
		}
		else{
			document.getElementById('telephone').style.backgroundColor="#ffdfdf";
		}

		//Test du champ mail1
		if(document.getElementById('email').value.length>=2){
			document.getElementById('email').style.backgroundColor="#f5f9fd";
			valide++;
		}
		else{
			document.getElementById('email').style.backgroundColor="#ffdfdf";
		}
		//Test du champ nom2
		if(document.getElementById('nom2').value.length>1){
			document.getElementById('nom2').style.backgroundColor="#f5f9fd";
			valide++;
		}
		else{
			document.getElementById('nom2').style.backgroundColor="#ffdfdf";
		}

		//Test du champ telephone2
		if(document.getElementById('telephone2').value.length>=10){
			document.getElementById('telephone2').style.backgroundColor="#f5f9fd";
			valide++;
		}
		else{
			document.getElementById('telephone2').style.backgroundColor="#ffdfdf";
		}

		//Test du champ mail2
		if(document.getElementById('email2').value.length>=2){
			document.getElementById('email2').style.backgroundColor="#f5f9fd";
			valide++;
		}
		else{
			document.getElementById('email2').style.backgroundColor="#ffdfdf";
		}



		if(valide<6){
			alert("Veuillez saisir correctement la totalit\351 des champs annot\351s d'une asterisque rouge.");
			return false;
		}
		else{
			return true;
		}
	}