var TOTAL = 3;

function initTotal (tot) {
	TOTAL = tot;
}

function Element(id) {
	if (document.all)
		return (document.all[id]);
	else{
		if (document.getElementById)
			return (document.getElementById(id));
		else{
			if ((navigator.appname.indexOf("Netscape") != -1) && parseInt(navigator.appversion == 4))
				return (document.layers[id]);
		}
	}
}

function montre(id) {
	var d = Element(id);
	for (var i=0 ; i<TOTAL ; i++) {
		var tmp ='Omenu' + i + '';
		if ( Element(tmp) ) {
			Element(tmp).style.display = 'none';
		}
		var tmp2 = 'Master_' + tmp;
		if ( Element(tmp2) ) {
			Element(tmp2).className = 'onglet';
		}
	}
	if ( d ) {
		var tmp = 'Master_' + id;
		Element(tmp).className = 'onglet_on';
		d.style.display='block';
	}
}

function AffichePopup (url, nom) {
	window.open(url, nom,'directories=no, location=no, scrollbars=yes, status=no, tollbar=no, width=600, height=500');
}
