//著作権表記の「年」表示を自動更新する
function ShowNowYear() {
  var now = new Date();
  var year = now.getFullYear();
  document.write(year);
}