function openWin(images, w, h) {
  myWin= open("", "PhotoAlbumWindow", "width="+w +",height="+h +",status=no,toolbar=no,menubar=no,directories=no,location=no,resizable=no");
  myWin.document.open();
  myWin.document.write("<html><head><title>Фотоальбом</title></head>");
  myWin.document.write("<body leftmargin=0 topmargin=0 marginheight=0 marginwidth=0>");
  myWin.document.write("<a href=\"javascript:window.close()\"><img src="+images+" width="+w+" height="+h+" border=\"0\" alt=\"Закрыть окно\"></a>");
  myWin.document.write("</body></html>");
  myWin.document.close();  
}
