// JavaScript Document

function menu(etat, no){
	var obj2 = document.getElementById("im_" + no);
	if(etat == 1) {
		obj2.style.visibility="visible";
	} else {
		obj2.style.visibility="hidden";
	}
}

function search(){
	
	var id_type = document.getElementById("id_type").value;
	var dpt = document.getElementById("dpt").value;
	var ville = document.getElementById("ville").value;
	var region = document.getElementById("region").value;
	var id_tranche = document.getElementById("id_tranche").value;
	var locvente = document.getElementById("locvente").value;
	document.location.href='agence-immobiliere.php?id_type='+id_type+'&dpt='+dpt+'&ville='+ville+'&id_tranche='+id_tranche+'&region='+region;
}




