modifiedDate = new Date(document.lastModified);
modifiedMonth = modifiedDate.getMonth() + 1;
modifiedDay = modifiedDate.getDate();
modifiedYear = modifiedDate.getYear();
//if (navigator.appName == "Netscape"){modifiedYear = modifiedYear + 1900;}

// Last Modified: 2004/10/20 形式
document.write("<center><small>Last Modified: " + modifiedYear + "/" + modifiedMonth + "/" + modifiedDay + "</small></center>");

// 最終更新日：2004年10月20日 形式
// document.write("<center><small>最終更新日：" + modifiedYear + "年" + modifiedMonth + "月" + modifiedDay + "日" + "</small></center>");
