
// JavaScript Document

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 popup(url){
	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 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 test_size(){
	var obj = document.getElementById("tab");
	//alert(obj.offsetHeight);
	//window.parent.resisze(obj.offsetHeight);
	window.parent.ouvre_mainframe(obj.offsetHeight);
}


var holdMenu = "";
var oldH;




function comfirmation(url, phrase) {
	if(confirm('Voulez-vous vraiment supprimer ' + phrase + ' ?')){
		document.location.href=url;
	} 
}
