function clip(nazwa,value)
{
var pnn=(document.layers)?true:false;
var pn6=(navigator.vendor == ("Netscape6") || navigator.product == ("Gecko"));
var pie=false;
var pop=false;
if (document.all){ if (navigator.userAgent.search('Opera')>=0){ pie=false; pop=true;} else {pie=true; pop=false;}}

if(pie || pop) { document.all[nazwa].style.visibility=value;  };
if(pn6) { document.getElementById(nazwa).style.visibility=value;};
if(pnn) { document.layers[nazwa].visibility=value;    };
};

function otworz(adres)
{
noweOkno = window.open(adres, 'Pobierz plik', 'menubar=no, toolbar=no, location=no, scrollbars=no, resizable=no, status=no, width=180, height=200')
//noweOkno.close()
}

function okno(nazwa,width,height)
{
okienko=window.open(nazwa, '', "width="+width+", height="+height+", top=50, left=50, scroolbar=auto");
};

function biog(nazwa,width,height)
{
okienko=window.open(nazwa,'Help', "width="+width+", height="+height+", top=50,left=50,scrollbars=yes,resizable=no,menubar=no,toolbar=no");
};

function openClose(id)
{
   if(document.getElementById) {
      element = document.getElementById(id);
   } else if(document.all) {
      element = document.all[id];
   } else return;

   if(element.style) {
      if(element.style.display == 'block' ){
         element.style.display = 'none';
      } else {
         element.style.display = 'block';
      }
   }
}
