<!--
TODAY=new Date();
YYYY=TODAY.getFullYear()+"年";
MM=TODAY.getMonth()+1+"月";
DD=TODAY.getDate()+"日";
Day=TODAY.getDay();
WEEK=new Array(7);
WEEK[0]="日";
WEEK[1]="月";
WEEK[2]="火";
WEEK[3]="水";
WEEK[4]="木";
WEEK[5]="金";
WEEK[6]="土";
document.write(""+YYYY+MM+DD+"（"+WEEK[Day]+"）");
//-->

