<!--
var curMenu='';

function manageMenu(menuId) {
	var disp='';
	if ((curMenu!='')&&(curMenu!=menuId)) {
		disp=toggleMenu(curMenu);
	}
	disp=toggleMenu(menuId);
	if (disp=='block') {
		curMenu=menuId;
	} else {
		curMenu='';
	}
}
function toggleMenu(menuId) {
	var disp='';
	if ((obj=MM_findObj(menuId))!=null) {
		if (obj.style) {
			disp=obj.style.display;
			disp=(disp=='')?'block':(disp='block')?'':disp;
			obj.style.display=disp;
		}
	}
	return disp;
}
function showMenu(menuId) {
	if ((obj=MM_findObj(menuId))!=null) {
		if (obj.style) {
			obj.style.display='block';
			curMenu=menuId;
		}
	}
}
//-->
