function op(img, width, height){
windop=window.open("","my","width="+width+",height="+height);
windop.document.open();
windop.document.write("<html><head><title></title>");
windop.document.write("<SCRIPT LANGUAGE='JavaScript' type='text/javascript' > var ScrX=self.screen.width; var ScrY=self.screen.height; function WinCenter(){self.moveTo((ScrX-ScrX/2)/2,(ScrY-ScrY/2)/2)}</SCRIPT></head>");
windop.document.write("<body leftMargin=0 bottomMargin=0 topMargin=0 rightMargin=0 marginwidth=0 marginheight=0 onload='WinCenter()' onClick='window.close()'>");
windop.document.write("<center><IMG SRC="+img+" BORDER=0 title='кликните чтобы закрыть'></center>");
windop.document.write("</body></html>");
windop.document.close();
}


