// JavaScript Document日付所得//
today=new Date();
Y=today.getFullYear();
M=today.getMonth()+1;
D=today.getDate();
document.write(" 更新日   ",Y,"/",M,"/",D);


