function okienko(i,z1,z2)
{
 galeria=window.open("","grafika","menubar=1,resizable=1,width=800,height=650");
 with (galeria.document) {
  open();
  writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"');
  writeln('"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">');
  writeln('<html xmlns="http://www.w3.org/1999/xhtml" ');
  writeln('xml:lang="pl"><head><meta http-equiv="Content-type"');
  writeln(' content="text/html; charset=iso-8859-2" />');
  writeln('<title>Galeria</title><style type="text/css"> body {margin:0px; padding:0px; background:white;}');
  writeln('img {border:1px;}');
  writeln('--></style></head><body>');
  writeln('<CENTER><a href="javascript:self.close()"><img style="margin-top:10pt; margin-bottom:15pt;" src="g.php?p='+i+'/'+z1+'.jpg&w=400" name="img" alt="Zamknij" /></a><br>');
  s=(900/(z2-z1+1));
  if (s>150) {s=150}
  for (j=z1; j<=z2; j++) {
   writeln('<img style="margin-bottom:50pt; margin-right:5pt;" src="g.php?p='+i+'/'+j+'.jpg&r='+s+'"');
   writeln('alt="Pokaż" onClick="document.images[\'img\'].src=\'g.php?p='+i+'/'+j+'.jpg&w=400\'; "> ');
  }
  writeln('</CENTER></body></html>');
  close();
 }
 galeria.focus();
}
