
function openImageSizedWindow(src){
    // 画像をロードしてサイズを取得
    var i = new Image(); i.src = src;
    // 画像のサイズに合った空ウィンドウを開く
    var pop_win = window.open(
                      "",
                      "_blank",
                      "width="+i.width+",height="+(i.height+60)+",scrollbars=no,resizable=yes,left=0,top=0"
                  );
    // 空ウィンドウに画像を出力するためのHTML
    pop_win.window.document.write(
     '<html>'
    +'<head><title>BigOne - 大物写真 </title></head>'
    +'<body style="background-color:#ccffff;margin:0;pading:0;border:0;">'
    +'<div align="center">'
    +'<img src="'+i.src+'" width="100%" alt="">'
    +'<form>'
    +'<input type=button value="閉じる" onClick="top.close();">'
    +'</div></body>'
    +'</html>'
    );
}

