function big(lyr) {
   document.all[lyr].style.height='200px'; 
   }

   function small(lyr) {
   document.all[lyr].style.height='20px';
   }

   function start() {
   document.all.Layer1.style.height='20px';
   document.all.Layer2.style.height='20px';
   document.all.Layer3.style.height='20px'; 
   }
  function potwierdzenie(adres) {
  strona = adres;
  var sprawdz = window.confirm("Na pewno usun±æ?");
  if (sprawdz == true) {
  document.location.href = strona;
  return true;
  }
  else if (sprawdz == false) {
  window.alert("Akcja anulowana!")
  return false;
  }
}


