/* --------------------------------
	画像サイズと合ったポップアップウィンドウを開く関数
	@param src string ポップアップ表示する画像
-------------------------------- */
function openImageSizedWindow(src,width,height){
    // 画像をロードしてサイズを取得
    var i = new Image(); i.src = src;
    // サファリは、サイズの調整が必要
    wopen_width=width+5;
    wopen_height=height+5;

    // 画像のサイズに合った空ウィンドウを開く
    var pop_win = window.open(
                  "",
                  "_blank",
                  //"width="+width+",height="+height+",scrollbars=no,resizable=yes,menubar=no"
                  "width="+wopen_width+",height="+wopen_height+",scrollbars=no,resizable=yes,menubar=no,location=no,status=no,toolbar=no"
                  );
    // 空ウィンドウに画像を出力するためのHTML
    pop_win.window.document.open();
    pop_win.window.document.write(
     '<html>'
    +'<head><title>'+i.alt+'</title></head>'
    +'<body style="margin:0;padding:0;border:0;">'
    +'<img src="'+i.src+'" width="'+width+'" alt="" />'
    //+'<img src="'+i.src+'" width="100%" alt="" />'
    +'</body>'
    +'</html>'
    );
    pop_win.window.document.close();
}



/* --------------------------------
	ポップアップ
-------------------------------- */
function popupForm(url) {
	popupCenter(url, 'detail', 600, 480, [1, 1, 0, 0, 0, 0, 0]);
}






