function ZobrazKatMenu(htmlid) {
  if (!document.getElementById) return false;
  if (!document.getElementById(htmlid)) return false;
  var submenu=document.getElementById(htmlid);
  if (submenu.style.display=='block') submenu.style.display='none';
  else submenu.style.display='block';
  return true;
}
