function Picture(obr,cislo,sirka,vyska,ico,title,date) {

ScreenWidth = sirka + 60
ScreenHeight = vyska + 100

iMyWidth = (screen.width/2) - (ScreenWidth/2 + 10)
iMyHeight = (screen.height/2) - (ScreenHeight/2 + 25)

okno=window.open("", "images", "width=" + ScreenWidth + ",height=" + ScreenHeight + ", resizable=no, left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=yes");


okno.document.write("<html>");
okno.document.write("<head>");
okno.document.write("<title>"+title+" obrázek #"+cislo+"</title>");
okno.document.write("<link rel='stylesheet' type='text/css' href='hlzone/xfiles/style.css'>");
okno.document.write("</head>");
okno.document.write("<body style='overflow:auto;'>");
okno.document.write("<table CLASS='borders' align='center' width='100%' cellspacing='0' cellpadding='3'>");
okno.document.write("<tr><td CLASS='texthead-red' align='left'>");

if ((ico == 'hl2') || (ico == 'eone') || (ico == 'etwo')) {
okno.document.write("<img src='hlzone/img/logos/icon_"+ico+".gif' width='18' height='16' align='top'>&nbsp;"+title+"  obrázek #"+cislo);}
else {okno.document.write("<img src='hlzone/img/logos/icon_"+ico+".gif' width='16' height='16' align='top'>&nbsp;"+title+"  obrázek #"+cislo);}

okno.document.write("</td><td CLASS='texthead-gray' align='right'>");
okno.document.write(date);
okno.document.write("</td></tr>");
okno.document.write("<tr><td align='center' colspan='2'>");
okno.document.write("<img src='hlzone/img/pictures/news/img"+obr+".jpg' align='top' width='"+sirka+"' height='"+vyska+"' OnClick='javascript:self.close();' alt='Zavřít 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>");
}