var newwindow;
function popup(url) {
	newwindow = window.open(url,'name','width=900,height=600,toolbar=no,resizable=yes, location=no, directories=no, status=no, menubar=no, scrollbars=yes, copyhistory=no');
	newwindow.focus();
}

function show(id) {
var d = document.getElementById(id);
	for (var i = 0; i<=100; i++) {
		if (document.getElementById('submenus'+i)) {document.getElementById('submenus'+i).style.display='none';}
	}
if (id) {d.style.display='block';}
}


function fiche(fiche) {
	var x = document.getElementById(fiche);
	if(!x.style.display) 
		x.style.display='block';
	else
		x.style.display='';
}