function o(id)
{
	var element = document.getElementById("menu_"+id);
	if (element) {
		element.style.display = (element.style.display == 'none') ? "block" : "none";
	}
}
function powieksz(url, w, h)  {
	var w2 = w+10;
	var h2 = h+30;
	okno=window.open(url,'FullWindow','left=0,top=0,width='+w+',height='+h+',innerheight='+w2+',innerwidth='+h2+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
	okno.resizeTo(w2,h2);
	okno.focus();
}

// local
var t_current = '';
function t(id)
{
	if (t_current && (t_current!=id))
	{
		var element = document.getElementById("tekst_"+t_current);
		if (element) {
			element.style.display = "none";
		}
	}
	
	var element = document.getElementById("tekst_"+id);
	if (element) {
		element.style.display = (element.style.display == 'none') ? "block" : "none";
	}
	t_current = id;
}



iz=0;
function photo(url,w,h)
{
	win=window.open('','win'+iz, 'left=0,top=0,width='+w+',height='+h+',innerheight='+h+',innerwidth='+w+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
	win.document.write('<html><head><meta http-equiv=Content-Type content="text/html; charset=iso-8859-2"></head>');
	win.document.write('<title>Powiększenie</title><body bgcolor="#ffffff" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
	win.document.write('<div align="center"><a href="#" onclick="javascript:self.close();"><img src="'+url+'" title="Zamknij" border="0"></a></div></body></html>');
	win.focus();
	iz+=1;
}
