window.onload=montre;
function montre(id) {
var d = document.getElementById(id);
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
	}
if (d) {d.style.display='block';}
}

function displayZoom(element) {
	width=668;
	height=300;
	
	var popup = window.open(element.getAttribute('href'), 'popup_zoom', 'status=no,location=no,resizeable=yes,scrollbars=yes,width='+width+',height='+height+'');
	popup.focus();
	
	return false;
}

function inOpener(element) {
	window.opener.location.href = element.getAttribute('href');
	
	self.close();
	
	return false;
}