function otworz(obrazek)
{

		okno=window.open('', '','width='+780+',height='+580+',toolbar=no,directories=no,menubar=no,locations=no,status=no,scrollbars=yes,resizable=yes,fullscreen=no');
		okno.document.open();

		okno.document.writeln("<html>\n<head>\n<link rel=stylesheet href=\"./css/silver.css\" type=\"text/css\"/>\n<title>SILVER SAMURAI GALLERY</title>\n</head>");
		okno.document.writeln("<body leftmargin=0 topmargin=0 style=\"background:#000 url('./images/tlo.jpg')\">");
		
		okno.document.writeln("<table width=100% height=100%>");
		okno.document.writeln("<tr><td valign=center align=center>\n<br><br><a href=\"javascript:window.close();\" class=link_gal><img src="+obrazek+" border=0><Br><Br>Zamknij</a>\n</td></tr></table>");
		okno.document.writeln("</body>\n</HTML>\n");
		okno.document.close(); 
		okno.focus(); 		
	
	return;
}