function show_hide(el) {
	e=window.document.getElementById(el);
	if( e.style.display=="none" )
		e.style.display="block";
	else
		e.style.display="none";
}
function show(e) {
	window.document.getElementById(e).style.display="block";
}
function hide(e) {
	window.document.getElementById(e).style.display="none";
}
function open_window(el,w,h) {
	if( screen )
	{
		od_lewej=(screen.width/2)-(w/2);
		od_gory=(screen.height/2)-(h/2);
	}
	else
	{
		od_lewej=50;
		od_gory=50;
	}
	zwiekszona_wysokosc=h+20;
	okno_rys=window.open('','','width='+w+',height='+zwiekszona_wysokosc+',statusbar=no,scrollbars=no,left='+od_lewej+',top='+od_gory+'');		

	
	okno_rys.document.write("<html><body topmargin=0 leftmargin=0 bgcolor=#ffffff onclick=window.close()><center>");
	okno_rys.document.write("<table width=100% height=\""+zwiekszona_wysokosc+"\" cellpadding=0 cellspacing=0 border=0><tr><td valign=top align=center>");
	okno_rys.document.write("<img src="+el+">");
	okno_rys.document.write("</td></tr><tr><td height=20 style=\"background-color:#494846; font-size:9px; font-family:verdana; color:#FFFFFF; text-align:right;\">copyright &copy; www.jawa.com.pl 2007 &nbsp;&nbsp;");
	okno_rys.document.write("</td></tr></table>");
	okno_rys.document.write("</center></body></html>");
}
