// JavaScript Document
function pole(x) {
  return document.getElementById(x);
}

function zviditelni(x,toto) {
    o = document.getElementsByTagName('span');
    for (i = 0; i < 100; i++)
         if (o[i]) o[i].style.color = "black" ;

    if (pole('id_'+x)) pole('id_'+x).style.display = "inline";
    if (pole('but_'+x)) pole('but_'+x).src = "./img/m.gif";
    toto.style.color = "blue";
}

function zmen_viditelnost(x) { // pro menu
  if (pole('id_'+x).style.display == "none") {
    pole('id_'+x).style.display = "inline";
    pole('but_'+x).src = "./img/m.gif";
  }
  else {
    pole('id_'+x).style.display = "none";
    pole('but_'+x).src = "./img/p.gif";
  }
}

