﻿// 写真を別ウィンドウで表示する
function popen(fname,title) {
var PW;

    PW = window.open("","Photo",
        "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=700,height=560");
    PW.document.open();
/*
    PW.document.write("<html><head><title>" + document.title + " - " + title + "</title></head>");
*/
    PW.document.write("<html><head><title>" + title + "</title></head>");
    PW.document.write("<body bgcolor='#FFFFFF'>");
    PW.document.write("<div align='center'>");
    PW.document.write("<img src='" + fname + "' alt='" + title + "'>");

    PW.document.write("<br><form><input type='button' value='閉じる' onclick='window.close()'></form></div></body></html>");
/*
    PW.document.write("<br><a onclick='window.close()'><img src='img/close.gif' alt='閉じる' border=0 style='cursor:pointer'></a><br></div></body></html>");
*/
    PW.document.close();
    PW.focus();
}

function pstatus() {
    window.status="クリックすると拡大写真がご覧になれます";
}

