 <!--
    pr=navigator.appName;
    prv=parseInt(navigator.appVersion);
    prohl=0;
    if (pr == 'Microsoft Internet Explorer'){prohl=1;} // Internet Explorer
    else if ( (pr == 'Netscape') && (prv >= 5)){prohl=2;} // Netscape 6 ci Mozilla

          lastco=0;

    function noveOkno(stranka)

    {
      window.open(stranka,"","width=800,height=600,top=20,left=40,status,scrollbars,resizable,toolbar");
      return false;

    }
    function noveOknoHelp(stranka)

    {
      window.open(stranka,"_blank","width=640,height=480,top=20,left=40,status,scrollbars,resizable");
      return false;

    }

    function closeOkno(agenda) {
        if (window.opener != null) {
            window.opener.location.href="close.do?agenda=" + agenda;
        } else {
            location.href="closeNoOpener.do?agenda=" + agenda;
        }
        window.close();
    }
    
	function ukaz(obj) {
		if (prohl==1) {
			document.all[obj].style.visibility = "visible";
		} else {
			document.getElementById(obj).style.visibility = "visible";
		}
	}

	function skryj(obj) {
		skryjInner(obj);
	}
	function skryjInner(obj) {
	    if (prohl==1) {
	    	document.all[obj].style.visibility = "hidden";
		} else {
			document.getElementById(obj).style.visibility = "hidden";
		}
	}

   -->

