// JavaScript Document

//コピーライト自動更新

function ShowNowYear() {
   var now = new Date();
   var year = now.getFullYear();
   document.write(year);
}

