function popwin(capt,comm,fimg,dy) {
var wnd = window.open('','','toolbar=0, scrollbars=0, resizable=0, status=0, width=440, height='+(dy+95));
wnd.document.writeln('<html><head><META HTTP-EQUIV="Content-type" CONTENT="text/html; charset=iso-8859-2"></head><title>'+capt+'</title><body bgcolor=#CCE8FF>');
wnd.document.writeln('<table bgcolor=#F8F8FF border=0 width=100%><tr valign=top><td style="font-family:Arial; font-size:10pt; font-weight:bold;">'+capt+'</td><td align=right style="padding:4px; font-family:Arial; font-size:9pt;"><a href="javascript:close();">zamknij&nbsp;okno</a></td></tr>');
wnd.document.writeln('<tr><td colspan=2 align=center><img src="'+fimg+'" border=1></td></tr>');
wnd.document.writeln('<tr><td colspan=2 align=center style="padding:4px; font-family:Arial; font-size:11pt;">'+comm+'</td></tr>');
wnd.document.writeln('</table></body></html>')
wnd.document.close();
return false;
}

function popwin2(capt,comm,fimg,dx,dy) {
var wnd = window.open('','','toolbar=0, scrollbars=0, resizable=0, status=0, width='+dx+', height='+(dy+95));
wnd.document.writeln('<html><head><META HTTP-EQUIV="Content-type" CONTENT="text/html; charset=iso-8859-2"></head><title>'+capt+'</title><body bgcolor=#CCE8FF>');
wnd.document.writeln('<table bgcolor=#F8F8FF border=0 width=100%><tr valign=top><td style="font-family:Arial; font-size:10pt; font-weight:bold;">'+capt+'</td><td align=right style="padding:4px; font-family:Arial; font-size:9pt;"><a href="javascript:close();">zamknij&nbsp;okno</a></td></tr>');
wnd.document.writeln('<tr><td colspan=2 align=center><img src="'+fimg+'" border=1></td></tr>');
wnd.document.writeln('<tr><td colspan=2 align=center style="padding:4px; font-family:Arial; font-size:11pt;">'+comm+'</td></tr>');
wnd.document.writeln('</table></body></html>')
wnd.document.close();
return false;
}

