/* imgop.js  

★別ウインドウで画像を表示する★
 imgwin(画像パス,幅,高さ,ウィンドウ名) 
<a href="別ウインドウで表示する画像" onclick="imgwin('別ウインドウで表示する画像',441,600,'agrinakai');return false"><img src="貼付け画像" width="73" height="100" border="0" style="position:relative; left:70px; top:0px;">
*/

function imgwin(src,w,h,name){
// resizable=1にすると、開いたウィンドウのサイズ変更ができるようになります。↓
var w=window.open("",name,"width="+w+",height="+h+",resizable=0,scrollbars=0")
with(w.document){
open()
writeln("<html><head><title>IMAGE</title></head>")
writeln("<body bgcolor=#ffffff leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>")
writeln("<center><img src='"+src+"'></center></body></html>")
close()
}
}
