/*
 * 著作権表示 西暦年 自動更新
 */

function ShowNowYear() {
var now = new Date();
var year = now.getFullYear();
document.write(year);
}
