	function valide_agence_contact(type) {

		var valide = 0;
		
		if (type == "annonce")
			limite = 2
		else
			limite = 3

		//Test du champ 'nom'
		if(document.getElementById('nom').value != ''){
			document.getElementById('nom').style.backgroundColor="#f5f9fd";
			valide++;
		}
		else
			document.getElementById('nom').style.backgroundColor="#ffdfdf";


		//Test du champ 'email de l'internaute'
		ok = false ;
		var adr=document.getElementById('email').value;

		for (var j=1 ; j<(adr.length) ; j++) {
			if (adr.charAt(j)=='@') {
				if (j<(adr.length-4)){
					for (var k=j ; k<(adr.length-2) ; k++) {
						if (adr.charAt(k)=='.') 
							ok = true;
					}
				}
			}
		}
		if (ok==true){
			document.getElementById('email').style.backgroundColor="#ffffff";
			valide++;
		}
		else
			document.getElementById('email').style.backgroundColor="#ffdfdf";

		//Test du champ 'message'
		if (type == "agence"){
			if(document.getElementById('message').value.length >= 50){
				document.getElementById('message').style.backgroundColor="#f5f9fd";
				valide++;
			}
			else
				document.getElementById('message').style.backgroundColor="#ffdfdf";
		}

		if(valide < limite){
			alert("Veuillez saisir correctement la totalité des champs annotés d'un asterisque rouge.");
			return false;
		}
		else
			return true;
	}
