function win_open2(wIMG,wName,wWidth,wHeight) {

//ウィンドウを開く
	nWin = window.open("","NewWindow","width="+wWidth+",height="+wHeight);
	
	//ウィンドウを生成
	nWin.document.open();
	nWin.document.write("<html><head>");
	nWin.document.write("<title>"+wName+"</title></head>");
	nWin.document.writeln("<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
	nWin.document.write("<a href='javascript:window.close()'><img src='"+wIMG+"' border='0' width='"+wWidth+"' height='"+wHeight+"'></a>"); 
	nWin.document.write("</body></html>");
	nWin.document.close();
	
	//IE用の調整
	nWin.resizeBy(wWidth-nWin.document.body.clientWidth,wHeight-nWin.document.body.clientHeight);
	
	//FireFox用の調整
	nWin.innerWidth = wWidth;
	nWin.innerHeight = wHeight;

	//新しいウィンドウを前に
	nWin.focus();
}