
function openDetail( path , title ){
	var img = "./img" + path;

	//img:イメージファイル
	if (img != '')
	{  
		image=new Image();  //イメージオブジェクト生成
	    image.src=(img);
	    _Oncall_jp_ImgWin(img,image.width,image.height,0,0, title+"もももん-桃紋-　和柄の銀細工");
  	}
}
function _Oncall_jp_ImgWin(img,width,height,sb,rs,title)
{
	//img:イメージファイル、width:ウィンドウ横幅(ピクセル)、height:ウィンドウ高さ(ピクセル)
	//sb:スクロールバー(0/1)、rs:リサイズ可否(0/1)
	if (img != '')
	{
	    opt="width="+width+",height="+height+",scrollbars="+sb+",resizable="+rs;
	    imgwin=window.open('','_blank',opt);  //ウィンドウをオープンする
	
	    imgwin.document.open();  //タイトルと上下左右マージンを０設定
	    imgwin.document.writeln("<html><head><title>" + title + "</title></head>");
	    imgwin.document.writeln("<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 background='"+img+"'>");
	    imgwin.document.writeln("</body></html>");  //イメージ表示
	    imgwin.document.close();

	    imgwin.focus();  //ウィンドウを前面に表示
	}
}
