// 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 searchClim(){
	var obj = document.getElementById("dpt");	
	
	document.location.href='liste-climaticiens.php?dpt=' + obj.value;
	
}

function zoom(path){
	var url="view_photo.php?path=" + path;
	window.open(url, 'pop', 'toolbar=0, location=0,  directories=0, status=0, scrollbars=0, resizable=1, copyhistory=0, menuBar=0, width=600, height=450');
}

function info(){
	var obj = document.getElementById("cadreInfos");
	w = document.body.clientWidth;
	w2= (w/2) - 500 + 670;
	
	if(obj.style.visibility == 'visible') {
		obj.style.visibility = 'hidden';
	} else {
		obj.style.visibility = 'visible';
	}
		
	
	//alert(w2);
	
	obj.style.left=w2 + 'px';
	
}