// JavaScript Document
function menu(etat, no){ 
	if(navigator.appVersion.indexOf('MSIE 8.0') != -1){
		//
	} else {
		var obj2 = document.getElementById("im_" + no);
		if(etat == 1) {
			obj2.style.visibility="visible";
		} else {
			obj2.style.visibility="hidden";
		}
	}
}

function open_pop(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 makeRecherche(){
	var obj = document.getElementById("mc");
	document.location.href='liste-vins.php?mc='+obj.value;
}
