<!--
noweOkienko = null;
function okno_krzesla(src, txt){
  if(window.screen){
    aw=screen.availWidth;
    ah=screen.availHeight;
  }else{
    aw=640;
    ah=450;
  }
  if(noweOkienko==null || noweOkienko.closed){
    w=275;
    h=410;
    ustawienia=
     "left=" + (aw-w)/2 + ","
    +"top=" + (ah-h)/2 + ","
    +"screenX=" + (aw-w)/2 + ","
    +"screenY=" + (ah-h)/2 + ","
    +"width="+ w +","
    +"height="+ h +","
    +"innerWidth="+ w +","
    +"innerHeight="+ h +","
    +"toolbar=no,"
    +"location=no,"
    +"directories=no,"
    +"status=no,"
    +"menubar=no,"
    +"scrollbars=no,"
    +"resizable=no"
    noweOkienko = window.open('','obrazek',ustawienia);
  }
  noweOkienko.document.open();
  noweOkienko.document.clear();
  noweOkienko.document.write(
     '<html><head>\n'
    +'<title>Galeria</title>\n'
    +'<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-2">\n'
    +'<link rel="stylesheet" href="styl.css" type="text/css">\n'
    +'</head>\n'
    +'<body topmargin=0 marginwidth=0 leftmargin=0 marginheight=0 border=0 bgcolor=#ffffff text=#000000 onLoad=focus()>\n'
    +'<div align=center style="font-family: verdana; font-size: 10px; color: #000000;"><br><img src='+ src +' border=1><br><br>'+ txt +'</div></body>\n'
    +'</html>'
  );
  noweOkienko.document.close();
  noweOkienko.focus();
}
//-->