function Picture(obr,cislo,gallery,chapter) {

iMyWidth = (screen.width/2) - (435 + 10)
iMyHeight = (screen.height/2) - (350 + 25)

okno=window.open("", "gallery", "height=700,width=870,resizable=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=yes");


okno.document.write("<html>");
okno.document.write("<head>");
okno.document.write("<title>blue shift: Obrázek #"+cislo+"</title>");
okno.document.write("<link rel='stylesheet' type='text/css' href='xfiles/style.css'>");
okno.document.write("</head>");
okno.document.write("<body style='overflow:auto;' topmargin='20' leftmargin='20' rightmargin='20' bottomargin='20'>");
okno.document.write("<table CLASS='borders' align='center' width='100%' cellspacing='0' cellpadding='3'>");
okno.document.write("<tr><td CLASS='texthead-gray' align='left'>");
okno.document.write("<img src='../hlzone/img/logos/icon_bshift.gif' width='16' height='16' align='top'>&nbsp;blue shift: Obrázek #"+cislo);
okno.document.write("</td><td CLASS='texthead-gray' align='right'>");
okno.document.write(chapter);
okno.document.write("</td></tr>");
okno.document.write("<tr><td align='center' colspan='2'>");
okno.document.write("<img src='img/pictures/gallery/"+gallery+"/img"+obr+".jpg' align='top' width='800' height='600' OnClick='javascript:self.close();' alt='Zavři okno...' style='cursor:hand;'><br>");
okno.document.write("</td></tr>");
okno.document.write("<tr><td CLASS='borderhead' align='center' colspan='2'>");
okno.document.write("<a CLASS='mailsv' title='Zavřít okno...' href='javascript:self.close()'>CLOSE</a></td>");
okno.document.write("</td></tr>");
okno.document.write("</table>");
okno.document.write("</body>");
okno.document.write("</html>");
}