    var opis_widoczny="opis";
    var id="";
    function pokaz_opis(id) {
      if (document.getElementById) {
        document.getElementById(opis_widoczny).style.display='none';
        document.getElementById(id).style.display = 'block';
        opis_widoczny = id;
      } else if (document.all){
        document.all(opis_widoczny).style.display = 'none';
        document.all(id).style.display='block';
        opis_widoczny = id;
      };
    }

  function pokaz(id) {
    if (document.getElementById) {document.getElementById(id).style.display = 'block';}
    else if (document.all){document.all(id).style.display='block';}
  }
  function ukryj(id) { 
    if (document.getElementById) { document.getElementById(id).style.display = 'none';}
    else if (document.all){document.all(id).style.display='none';};
  };
  //
  var ramka_strona="";
  function ramka(strona){
    parent.document.getElementById('prawia_frameset').setAttribute('cols', '20%,*');
    parent.document.getElementById('prawia_frame_tresc').setAttribute('src', strona);
  }
  function ramka_ukryj(id){
    parent.document.getElementById(id).setAttribute('cols', '0,*');
  }
  function ramka_pokaz(id){
    parent.document.getElementById(id).setAttribute('cols', '20%,*');
  }

