function opn(img,w,h) {
  img = escape(img);
  if (h > 600) { w2 = w + 16; myWindow = window.open("", "", "directories=0,location=0,menubar=0,scrollbars=1,status=0,toolbar=0,resizable=0,width="+w2+",height=600"); }
  else { myWindow = window.open("", "", "directories=0,location=0,menubar=0,scrollbars=0,status=0,toolbar=0,resizable=0,width="+w+",height="+h); }
  myWindow.document.open();
  myWindow.document.write("<html><head><title>Просмотр</title></head><body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0>");
  myWindow.document.write("<center><a href=\"javascript:window.close();\"><img src=\""+img+"\" width="+w+" height="+h+" border=0 alt=\"Закрыть\"></a></center>");
  myWindow.document.write("</body></html>\n\n");
  myWindow.document.close();
}
