function winop(img_name, img_way, img_width, img_height){
windop=window.open("","mywin","width="+img_width+",height="+img_height);
windop.document.open();
windop.document.write("<html><head><title>"+img_name+"</title></head>");
windop.document.write("<body leftMargin=0 bottomMargin=0 topMargin=0 rightMargin=0 marginwidth=0 marginheight=0 onClick='window.close()'>");
windop.document.write("<center><IMG SRC="+img_way+" BORDER=0 title='закрыть'></center>");
windop.document.write("</body></html>");
windop.document.close();
}


