// copyright自動更新

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

