	function change_cat(cat){		
		
		if(cat=="location"){
			document.getElementById('lib_budget').innerHTML="Loyer HC compris entre :";
		}
		else{
			document.getElementById('lib_budget').innerHTML="Budget compris entre :";
		}		
	}

function verif_saisie() {
		
		var valide=0;

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

		if(valide<3){
			alert("Veuillez saisir correctement la totalite des champs annotes d'un asterisque rouge.");
			return false;
		}
		else{
			return true;
		}
	}
	
