function zoom(jaki,szer,wys,tytul) {
popup=window.open('about:blank','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no, resizable=no, fullscreen=no,channelmode=no, width='+szer+', height='+wys+', top=10, left=150');

with(popup.document) {
open();
write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head><title>'+tytul+ '</title></head><body style="margin:0;padding:0;border:0"><img src="' +jaki+ '" style="display:block;" alt="' +tytul+ '" onClick="window.close()"/></body></html>');
close();
}
}
