function przycisk(podstawowy, wskazany)
{
  if (document.images)
  {
    this.name = "img" + przyciski.length;
    if (podstawowy) { this.normal = new Image(); this.normal.src = podstawowy }
    if (wskazany) { this.over = new Image(); this.over.src = wskazany }

  }

  this.normalizuj = normalizuj;
  this.podswietl = podswietl;

  return this;
      
  function normalizuj() { if (document.images) document.images[this.name].src = this.normal.src; window.status = "" }
  function podswietl() { if (document.images && this.over) document.images[this.name].src = this.over.src; if (this.opis) window.status = this.opis }
}
przyciski = new Array("");
if (document.images)
{
// Dodawanie kolejnych przycisków:
przyciski[1] = new przycisk("images/glowna.jpg", "images/glowna_s.jpg");
}





/////////////////////////////////////////////////////////

function create_window(url,width,height,resizable,scrollbars,menubar){
var Win=window.open(url,"pokazokno",'width='+width+',height='+height+',resizable='+resizable+',scrollbars='+scrollbars+',menubar='+menubar);
}

////////////////////////////////////////////////////////