function look(image)
{
    document.area1.src = image;
    /*document.getElementById('imgarea').getElementsByTagName('IMG')[0].src = image;*/
}

function openImageSizedWindow(src){
    // 画像をロードしてサイズを取得
    var i = new Image(); i.src = src;
    // 画像のサイズに合った空ウィンドウを開く
    var pop_win = window.open(
                      "",
                      "_blank",
                      "width="+i.width+",height="+i.height+",scrollbars=no,resizable=yes"
                  );
    // 空ウィンドウに画像を出力するための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="'+i.width+'" alt="" />'
    +'</body>'
    +'</html>'
    );
    pop_win.window.document.close();
}


