var menuName='', menuId='';

function menuShow(name, id){
	if(menuId){
		displNone(elmById(menuName+'Menu'+menuId));
		displBlock(elmById('menuBarItem'+menuId));
	}
	menuId=id;
	menuName=name;
	displNone(elmById('menuBarItem'+menuId));
	displBlock(elmById(menuName+'Menu'+menuId));
}
function menuHide(){
	if(menuId){
		displNone(elmById(menuName+'Menu'+menuId));
		displBlock(elmById('menuBarItem'+menuId));
	}
	menuId='';
}

