<!--
// copyright (c) Dawid Jakubowski
var okno,poz_x,poz_y,szer,wys;
root_okno='kronika/fotki/';
function nowe_okno(Obraz,Tytul,Kolor,Width,Height){
    Obraz=root_okno+Obraz;
    poz_x=(screen.width/2)-(Width/2);
    poz_y=(screen.height/2)-(Height/2);
    Settings="width="+Width+",height="+Height+",top="+poz_y+",left="+poz_x+",dependent=no,toolbar=no,directories=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,fullscreen=no,channelmode=no";
    okno=window.open('about:blank',Tytul,Settings);
    okno.focus();
        okno.document.write('<html><head><title>'+Tytul);
        okno.document.write('</title><meta http-equiv="content-type" content="text/html; charset=iso-8859-2"></head><body bgcolor="'+Kolor+'" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0"><div>');
        okno.document.write('<a href="#" onClick="javascript:window.close()">');
 
        okno.document.write('<img src="'+Obraz+'" width="'+Width+'" height="'+Height+'" border="0" alt="'+Tytul+'"></a></div></body></html>');
}

//-->
