<!--
var x1 = null;
function grafika(src,tytul,w,h)
{
wys = (h - '0');
sze = (w - '0');
x1 = window.open('','x1','width=' + w + ',height=' + h + '');
x1.document.open();
x1.document.clear();
x1.document.write('<html>\n<head>\n<title>' + tytul + '</title>\n<meta http-equiv="content-type" content="text/html; CHARSET=iso-8859-2"></head>\n<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">\n<center><a href="javascript:window.close()"><img src="' + src + '" alt="Kliknij, aby zamknaĉ okno" border="0" width="' + sze + '" height="' + wys + '"></a></center>\n</body>\n</html>');
x1.document.close();
x1.focus();
}
//-->

<!--
function displayWindow(url, width, height) {
        var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no' );
}
//-->

<!--
function displayWindow2(url, width, height) {
        var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,menubar=no' );
}
//-->


