Nowe=null;
function otworz_okno(w,h,src,tytul) {
if (Nowe) Nowe.close();
Nowe=window.open('','','toolbar=no,menubar=no,location=no,personalbar=no,scrollbars=no,status=no,directories=no,resizable=no'
+",height="+h
+",width="+w);
Nowe.document.open();
Nowe.document.write("<html><head><title>"+tytul+"</title></head><body topmargin=0 leftmargin=0><a href='javascript:window.close()'><img src="+src+" border=0></a></body></html>");
Nowe.focus()
}