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('TD {text-size: 8pt; font-family: Verdana; FONT {text-size: 10 pt;}');
   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=20 bgcolor=red><FONT COLOR=white> <b> &nbsp; &nbsp; YORKER - www.yorker.pl </b></FONT> </TD></TABLE><br><CENTER><IMG SRC="');
   pop.document.write(plik);
   pop.document.write('"><br><br><a href=javascript:window.close()><b> zamknij okno</b> </a> </CENTER> </body></html>');
 }
 
function displayWindow(url, width, height) {
        
        sw = screen.width;
        sh = screen.height;

        szer = sw - 300;
        wys  = sh - 300;
        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;

        var Win = window.open(url,"displayWindow",config);
}

