function menu_bar(str_item)
{
  var obj_item    = document.getElementById(str_item + '_bar');
  var str_display = (obj_item.style.display == 'block') ? 'none' : 'block';
  
  document.getElementById(str_item + '_bar').style.display = str_display;
}
