var win;

function do_gallery(id,gall) {
	var title='';
	var bgcolor='#a0a0a0';
	var bordercolor='f0f0f0';
	if(typeof(gall[id].popup[2])=='number') {
		win = window.open(null, '2222','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,left=30,top=30,width='+(gall[id].popup[1]+20)+',height='+(gall[id].popup[2]+20));
		win.document.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>'+ title +'</title><script>function resize(){ var img=document.getElementById(\'img\'); if (img != null) window.resizeTo(img.width+20,img.height+50);}</script></head><body bgcolor=' + bgcolor + ' leftmargin=0 topmargin=0 onload="javascript:resize();"><table cellpadding=0 cellspacing=0 border=0 width=100% height=100%><td align=center valign=center><a href="javascript:window.close()"><img id="img" src="/' + gall[id].popup[0] + '" style="border: solid 1px ' + bordercolor + '" width="'+gall[id].popup[1]+'" height="'+gall[id].popup[2]+'" alt="Zamknij okna"></a></td></table></body></html>');
		win.document.close();
		win.focus();
	}
}