<!--javascript---------------------------

now = new Date();
document.write(" ",now.getYear(),"年");
document.write(now.getMonth()+1,"月",now.getDate(),"日");
document.write(now.getHours(),"時",now.getMinutes(),"分");
document.write(now.getSeconds(),"秒");

//-->