// JavaScript Document
today=new Date();
Y=today.getFullYear();
M=today.getMonth()+1;
D=today.getDate();
document.write(Y,"年",M,"月",D,"日 現在");
