/**
 * create a popup window which fits image size
 * @param src string url to image to be poped up.
 */
function openImageSizedWindow(src)
{
    var i = new Image();
    i.src = src;
    var w = i.width;
    var h = i.height;
    if (!w){w = screen.availWidth;}
    if (!h){h = screen.availHeight;}
    var pop_win = window.open("", "_blank", "width="+w+",height="+h+",scrollbars=yes,resizable=yes");
    pop_win.window.document.open();
    pop_win.window.document.write('<html><head><title>'+i.alt+'</title><link type="text/css" rel="stylesheet" href="pbcommon/css/sidenavi.css" /></head>'
                                  +'<body>'
+'<div id="kGuide">'
+'<div class="info">【参考情報】</div>'
+'<div class="img"><img src="http://192.168.11.63/nissonpo/pdfnavi/pdfcache/000/000005/000005-001-s.jpg"></div>'
+'<div class="text">損害保険会社のディスクロージャーかんたんガイド</div>'
+'<div class="textLink"><a href="">PDFファイル</a></div>'
                                  +'</div><img src="'+i.src+'"  alt=""/>'
+'</body></html>');
    pop_win.window.document.close();
}
