licz=0;
function WinOpen(file,szer,wys){
szer+=22;
wys+=22;
config='left=1,top=1,width='+szer+',height='+wys+',innerheight='+wys+',innerwidth='+szer+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no'
aktname='okno' + licz;
stadion=window.open('',aktname,config)
stadion.document.write('<HTML><HEAD>');
stadion.document.write('<TITLE>Powiększenie... Kliknij na zdjęciu aby zamknąć.</title>');
stadion.document.write('</HEAD>');
stadion.document.write('<body bgcolor=#000000 leftmargin=0 topmargin=0 marginheight=0 marginwidth=0>');
stadion.document.write('<DIV align=center><img src='+file+' border=0 onclick="javascript:self.close();" vspace="5" hspace="5" ></DIV>');
stadion.document.write('</body></html>');
stadion.focus();
licz+=1;
}
