function popimage(plik)
 {

   sw = screen.width;
   sh = screen.height;

   szer = sw - 150;
   wys  = sh - 150;
   srodek_szer = sw/2;
   srodek_wys  = sh/2;
   
   lewy = srodek_szer - szer/2;
   gora = srodek_wys  - wys/2;
   
   config='resizable=yes,scrollbars=yes,menubar=no,width=' + szer +',height='+wys+',top='+ gora + ',left=' + lewy;
   pop = window.open ("","pop",config)

   pop.document.write('<html><head><STYLE TYPE="text/css"> A { text-decoration: none; color: #111111; font-size: 8pt; font-family: Verdana;}');
   pop.document.write('A:HOVER { text-decoration: none; color: #444444; font-size: 8pt; font-family: Verdana;}</STYLE>');
   pop.document.write('</head><body LEFTMARGIN=0 TOPMARGIN=0 RIGHTMARGIN=0 bgcolor=#ffffff>');
   pop.document.write('<TABLE WIDTH=100%><TD WIDTH=100% height=47 bgcolor=#000000><IMG SRC=gfx/logosml.png></TD></TABLE><CENTER><IMG SRC="zdjecia/');
   pop.document.write(plik);
   pop.document.write('"><br><br><a href=javascript:window.close()> zamknij okno </a> </CENTER> </body></html>');
 }

