// JavaScript Document
function showpicture(FileName,FileWidth,FileHeight) {
  subwin = open("", "", "width=" + FileWidth + ",height=" + FileHeight + ",scrollbars=no,location=no");
  subwin.focus();
  subwin.document.write("<html><head><title>Fresconovo - примеры работ</title></head><body leftmargin=0 topmargin=0><a href=\"#\" onClick=\"self.close()\"><img src=\"" + FileName + "\" width=" + FileWidth + " height=" + FileHeight + " border=0 alt=\"\"></a></body></html>");
}