function obr(jaki,szer,wys,tytul,tresc) {
	tresc = (tresc == 'undefined') ? '' : tresc;
	var popup=window.open('about:blank', 'nazwaokna','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,fullscreen=no,channelmode=no,width='+szer+',height='+wys+',left='+(screen.width-szer)/2+',top='+(screen.height-wys)/2);
  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><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-2" /><meta http-equiv="imagetoolbar" content="no" /><title>'+tytul+ '</title></head><body style="margin:0px;padding:0px;border:0px"><img src="'+jaki+ '" style="display:block;" alt="' +tytul+ '" />' +tresc+ '</body></html>');
    close();
  }
}