function enlarge(tytul,plik,wysokosc,szerokosc) {
with (window.open("","",'toolbar=no,menubar=no,scrollbars=yes,personalbar=no,status=no,resizable=yes,height='+wysokosc+',width='+szerokosc+',left=100,top=100')) {

window.blur();
window.opener.focus();
document.open();

document.write("<?xml version=\"1.0\" encoding=\"utf-8\"?><!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1//EN\" \"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\"><head><title>"+tytul+"</title><meta http-equiv=\"Content-type\" content=\"text/html; charset=iso-8859-2\" /><meta http-equiv=\"Content-Language\" content=\"pl\" /><body xml:lang=\"pl\" style=\"background: #a8c0e8; padding: 0px; margin: 0px\"><a href=\"javascript:window.close()\"><img src="+plik+" style=\"border: 0px; display: block\" alt="+tytul+" title=\"Kliknij aby zamknąć okienko\" /></a></script></body></html>");
document.close();
window.focus();
}
}