// JavaScript Document
licz=0;
function show(tytul,nazwa,sz,w,comment,tekst) {
szerokosc=sz;
wysokosc=w+(14*tekst);
config='left='+(screen.width-szerokosc)/2+',top='+(screen.height-wysokosc)/2+',width='+szerokosc+',height='+wysokosc+',innerheight='+wysokosc+',innerwidth='+szerokosc+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no';
ble='foto' + licz;
huzar=window.open('',ble,config)
huzar.document.write('<HTML><HEAD>');
huzar.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">');
huzar.document.write('<TITLE>'+tytul+'</title>');
huzar.document.write('</HEAD>');
huzar.document.write('<body bgcolor=white text=black leftmargin=0 topmargin=0 marginheight=0 marginwidth=0>');
huzar.document.write('<DIV align=center>');
huzar.document.write('<a href=# onclick="javascript:self.close();"><img alt="(Kliknij obrazek aby zamkn±c to okno)" src='+nazwa+' width='+sz+' height='+w+' border=0></A><br>');
huzar.document.write('<font size="1" face="Arial, Verdana, Tahoma">'+comment+'</font>');
huzar.document.write('</DIV>');
huzar.document.write('</body></html>');
huzar.focus();
licz+=1;
}
