	var ie = (document.getElementById && document.all);
	var ns = (document.getElementById && !document.all);

	function hide(a) {
		if (ie) {
			document.all[a].style.display = 'none';
			document.all[a].style.visibility = 'hidden';
		}
		if (ns) {
			document.getElementById(a).style.display = 'none';
			document.getElementById(a).style.visibility = 'hidden';
		}
	}

	function show(a) {
		if (ie) {
			document.all[a].style.display = '';
			document.all[a].style.visibility = 'visible';
		}
		if (ns) {
			document.getElementById(a).style.display = '';
			document.getElementById(a).style.visibility = 'visible';
		}
	}


function pokaz_obrazek(patch,xx,yy,title,txt)
{
hg=yy+100;
wd=xx+10;
ext_pic=open('', '', 'width='+wd+', height='+hg+'');
ext_pic.document.write('<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-2\"><title>'+title+'</title></head><body topmargin=5 leftmargin=5 marginheight=5 marginwidth=5><img src=\"'+patch+'\" onclick="javascript:self.close();" alt="Kliknij, aby zamkn¹æ!"><br><br><table width="100%" border=0 cellpadding=0 cellspacing=0><tr bgcolor=#c3c3c3 height=1><td></td></tr><tr bgcolor=#e5e5e5><th height=30><font face="Verdana" size="2">'+txt+'</th></tr><tr bgcolor=#c3c3c3 height=1><td></td></tr></table></body></html>');
}
