<!--
IE4 = (document.all) ? 1 : 0;

function Hide(vrstva) {

      if (IE4) {

            document.all[vrstva].style.visibility = "hidden";

      } else {

            document.layers[vrstva].visibility = "hide";

      }

}

function Show(vrstva) {

      if (IE4) {

            document.all[vrstva].style.visibility = "visible";

      } else {

            document.layers[vrstva].visibility = "show";

      }

}

// -->





