<!--
function showGallery(id) {
	okno=new Object;
	w=500;
	h=500;
	var p='';
	p='resizable=no,toolbar=no,status=no,location=no,menubar=no,scrollbars=no,width='+(w+2)+',height='+(h+2);
	okno=window.open('empty.html','galeria',p);
	okno.document.open();
	okno.document.write('<HTML><HEAD>');
	okno.document.write('<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-2">');
	okno.document.write('<TITLE>Outside Music - Galeria</TITLE>');
	okno.document.write('<STYLE TYPE="text/css"><!--body {margin: 0px;	padding: 0px;}--></STYLE>');
	okno.document.write('</HEAD>');
	okno.document.write('<BODY BGCOLOR="#717477">');
	okno.document.write('<TABLE WIDTH="100%" HEIGHT="100%" BORDER="0" CALLPADDING="0" CALLSPACING="0">');
	okno.document.write('<TR><TD VALIGN="middle" ALIGN="center">');
	okno.document.write('<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" WIDTH="'+w+'" HEIGHT="'+h+'">');
	okno.document.write('<PARAM NAME=movie VALUE="galeria.swf?id='+id+'">');
	okno.document.write('<PARAM NAME=quality VALUE=high><PARAM NAME="BGCOLOR" VALUE="#717477">');
	okno.document.write('<EMBED SRC="galeria.swf?id='+id+'" WIDTH="'+w+'" HEIGHT="'+h+'" QUALITY=high PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" TYPE="application/x-shockwave-flash" BGCOLOR="#717477">');
	okno.document.write('</EMBED></OBJECT>');
	okno.document.write('</TD></TR>');
	okno.document.write('</TABLE>');
	okno.document.write('</BODY></HTML>');
	okno.document.close();
	okno.focus();
}
//-->