var last_id = '';

function openSubmenu(open_id) {
 if (last_id) {
  var sm = document.getElementById(last_id);
  sm.style.display = 'none';
 }
 if (open_id) {
  var sm = document.getElementById(open_id);
  sm.style.display = '';
 }
 last_id = open_id;
}

