function show1(elt) {
	var part=document.getElementById(elt);
	for (i=1; i<2; i++) {
		sub = document.getElementById("sousmenu"+i);
		if (sub){  sub.style.display="none";  }
	}
	if (part){  part.style.display="block";  }
}
	  
function hide1(id) {
	var menu=document.getElementById(id);
	menu.style.display="none";
}
	  
function popUp(strURL,strType,strHeight,strWidth) {
	var strOptions="";
	if (strType=="console") strOptions="scrollbars,resizable,height="+strHeight+",width="+strWidth;
	if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
	if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth+",left=0,top=0";
	window.open(strURL, 'newWin', strOptions);
}
