
function op(img, width, height){
windop=window.open("","my","width="+width+",height="+height);
windop.document.open();
windop.document.write("<html><head><title></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+" BORDER=0 title='Кликните, чтобы закрыть'></center>");
windop.document.write("</body></html>");
windop.document.close();
}


