function open_image(imgsrc, description) {

winWidth = 680;
winHeight = 520;

posx = (screen.width/2)-(winWidth/2);
posy = (screen.height/2)-(winHeight/2);

page = window.open('','','toolbar=no, scrollbars=yes, resizable=no, status=no, location=no, directories=no, width='+winWidth+', height='+winHeight+', menubar=no, left='+posx+', top='+posy);


page.document.writeln("<html>");

page.document.writeln("<head>");
page.document.writeln("<link rel='stylesheet' type='text/css' href='style.css'>");
page.document.writeln("<LINK REL='stylesheet' HREF='js/galeria/cien.css' TYPE='text/css'>");
page.document.writeln("<title>Galeria</title>");
page.document.writeln("</head>");

page.document.writeln("<body leftmargin='0' rightmargin='0' topmargin='0' bottommargin='0' bgcolor='#F2F2F2'>");
page.document.writeln("<table border='0' cellpadding='0' cellspacing='0' height='100%' width='100%'>");
page.document.writeln("<tr><td align='center'>");


page.document.writeln("<table border='0' cellpadding='0' cellspacing='0' align='center'>");
page.document.writeln("<tr>");
page.document.writeln("<td class='lg' width='20'>&nbsp;</td>");
page.document.writeln("<td class='g'>&nbsp;</td>");
page.document.writeln("<td class='pg' width='20'>&nbsp;</td>");
page.document.writeln("</tr>");
page.document.writeln("<tr>");
page.document.writeln("<td class='l'>&nbsp;</td>");
page.document.writeln("<td width='10' height='10'><img src='" +imgsrc+ "' border='10' style='border-color: #FFFFFF'></td>");
page.document.writeln("<td class='p'>&nbsp;</td>");
page.document.writeln("</tr>");
page.document.writeln("<tr>");
page.document.writeln("<td class='ld' width='20'>&nbsp;</td>");
page.document.writeln("<td class='d'>&nbsp;</td>");
page.document.writeln("<td class='pd' width='20'>&nbsp;</td>");
page.document.writeln("</tr>");
page.document.writeln("</table>");


page.document.writeln("</td></tr>");
page.document.writeln("<tr><td height='80' align='center' valign='top'>");
page.document.writeln("<span class='tekst'>" + description + "</span>");
page.document.writeln("</td></tr>");
page.document.writeln("</table>");
page.document.writeln("</body>");

page.document.writeln("</html>");

page.document.close();

}
