<!--
now = new Date();
year = now.getYear(); if (year < 2000) year = year + 1900;
month = now.getMonth()+1;
day = now.getDate();
document.write(""+year+"年"+month+"月"+day+"日");
// -->