function obraz(obrazek,szero,wyso)
{
var pozx = screen.width - szero - 20;
var pozy = screen.height - wyso - 20;
NewWindow=window.open('','','width=' + szero + ',height=' + wyso + ',toolbar=no,directories=no,menubar=no,locations=no,status=no,scrollbars=auto,resizable=no,fullscreen=no,top=' + pozy + ',left=' + pozx);
NewWindow.document.open();
NewWindow.document.writeln("<html>\n<head>\n</head>");
NewWindow.document.writeln("<body leftmargin=0 topmargin=0 style=\"font-family:Arial, Helvetica, sans-serif; font-size:11pt; background-color:#000000\">");
NewWindow.document.writeln("<title>Divine Acoustics</title>");
NewWindow.document.writeln("<table width=100% height=100% style=\"font-family:Arial, Helvetica, sans-serif; font-size:11pt; background-color:#000000\">");
NewWindow.document.write("<tr><td valign=center align=center>\n<a href=\"javascript:window.close();\"><img src=\"");
NewWindow.document.write(obrazek);
NewWindow.document.writeln("\" border=0></a></td></tr>");
NewWindow.document.writeln("<tr><td align=center style=\"font-family:Arial, Helvetica, sans-serif; font-size:11pt; background-color:#000000\"><a href=\"javascript:window.close();\">         </a>\n</td></tr>");
NewWindow.document.writeln("</table>");
NewWindow.document.writeln("</body>\n</HTML>\n");
NewWindow.document.close();
NewWindow.focus();        
return;
}