// JavaScript Document

//　コピーライト　年号表示

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

