function bigimage(imgname, dx, dy, coment) {
  myWin= open("", "new_window","width="+dx+",height="+dy+",status=no,toolbar=no,menubar=no");
  myWin.document.open();
  myWin.document.write("<html><head><title>picture</title></head>");
  myWin.document.write("<body topmargin=0 leftmargin=0 bgcolor=#ffffff>");
  if(coment.lenght>0)myWin.document.write("<div style='position: absolute; top: 0; left: 0'><font color='#800000'><b><i><span style='background-color: #ffffff'>"+coment+"</span></font></div>");
  myWin.document.write("<table border='0' cellpadding='0' cellspacing='0' width='100%' height='100%'><tr><td width='100%' valign='middle'><p align='center'><a href='javascript: window.close()'><img border=0 src="+imgname+" alt='CLOSE'></a></table></body></html>");
  myWin.document.close();
}