function  otwieracz(obrazek,podpis)
{
 podpis = "Zamknij okno";
 nOkno = window.open("","obrazek", "menubar = yes,width=500,height=450");	
 nOkno.document.writeln("<head><title>Na Szczycie</title>");
 nOkno.document.writeln("<link rel='stylesheet' href='../css/styl_naszczycie.css' type='text/css'></head>");
 nOkno.document.writeln("<body bgcolor='#000000'>");         
 nOkno.document.writeln("<table width='100%' border='0' cellspacing='0' cellpadding='0' align='center' height='96%'>");
 nOkno.document.writeln("<tr align='center' valign='middle'>"); 
 nOkno.document.writeln("<td>"); 
 nOkno.document.writeln("<img src='../"+obrazek+"'>");
 nOkno.document.writeln("</td></tr><tr><td align='center'>");
 nOkno.document.writeln("<font color='#000000'><a href='#' onClick='top.close();' class='zamknij'>"+podpis+"</a>");
 nOkno.document.writeln("</font></td></tr></table>");
 nOkno.document.writeln("</body>");
}