var location_min = {"0" : "0","100" : "100", "200" : "200" , "300" : "300" , "400" : "400", "500" : "500", "600" : "600", "700" : "700", "800" : "800", "900" : "900", "1000" : "1000", "1100" : "1100", "1200" : "1200"};
var vente_min = {"0" : "0","50 000" : "50 000", "100 000" : "100 000", "200 000" : "200 000", "400 000" : "400 000", "500 000" : "500 000" , "600 000" : "600 000"};
var location_max = {"100" : "100","200" : "200", "300" : "300" , "400" : "400" , "500" : "500", "600" : "600", "700" : "700", "800" : "800", "900" : "900", "1000" : "1000", "1100" : "1100", "1200" : "1200", "20000": "1200 et plus"};
var vente_max = {"50 000" : "50 000", "100 000" : "100 000", "200 000" : "200 000", "300 000" : "300 000", "400 000" : "400 000", "10000000" : "600 000 et +"};

var bien_location = {"M" : "Maison", "A" : "Appartement", "G" : "Garage"};
var bien_vente = {"M" : "Maison", "I" : "Immeuble", "A" : "Appartement", "G" : "Garage"};

function update(idSelect,data,selectedKey) {
	var monSelect = document.getElementById(idSelect);
	monSelect.options.length = 0;
	var selected;
	i=0;
	for (var key in data) {
		// permet de choisir le champs à definir par defaut
		if (selectedKey == key) {
			selected = i;
		}
		monSelect.options[monSelect.length] = new Option(data[key],key);
		i++;
	}
	//permet de positionner la combo au bon champs
	monSelect.selectedIndex = selected;
}


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;
		
        var telephone=document.getElementById('telephone').value;
		telephone=telephone.replace(" ","");
		
		
        //Test du champ téléphone
		if((telephone.length>=10)){
			document.getElementById('telephone').style.backgroundColor="#f5f9fd";
			valide++;
		}
		else{
			document.getElementById('telephone').style.backgroundColor="#ffdfdf";
		}
		
		
		//Test du champ nom
		if(document.getElementById('nom').value.length>1){
			document.getElementById('nom').style.backgroundColor="#f5f9fd";
			valide++;
		}
		else{
			document.getElementById('nom').style.backgroundColor="#ffdfdf";
		}
		
		//Test du champ mail
		ok = false ;
		var adr=document.getElementById('mail').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('mail').style.backgroundColor="#ffffff";
			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;
		}
	}
	

