<!--
function OpenImg(img,wid,hei){
	var wid; 
	var hei; 
  pic = new Image();
  pic.src = img;    //画像の縦横ｻｲｽﾞを取得するため、画像を先読みする
  var WO;
	WO=window.open(pic.src,'','resizable=yes,width=' + (wid+15) + ',height=' + (hei+60));
	WO.document.write("<body bgcolor='#ffffff' text='#003300' leftmargin='0' topmargin='10' marginwidth='0' marginheight='10'>");
	WO.document.write("<div align='center'>");
	WO.document.write("<img src='");
	WO.document.write(pic.src);
	WO.document.write("'border=0>");
	WO.document.write("<form><input type='button' value='Close' onClick='window.close()'></form>");
	WO.document.write("</div></body></html>");
	WO.document.close();
	}
// -->
