<!--

// 日付 YYYY/MM/DD
dt=new Date();
Newyear=dt.getYear();
if(Newyear<2000){Newyear=Newyear+1900;}
Ye=Newyear+"年";
Mo=dt.getMonth()+1+"月";
Da=dt.getDate()+"日";
Day=dt.getDay();
Day2=new Array(7);
Day2[0]="日";
Day2[1]="月";
Day2[2]="火";
Day2[3]="水";
Day2[4]="木";
Day2[5]="金";
Day2[6]="土";
document.write("<b>"+Ye+Mo+Da+"("+Day2[Day]+")</b>");

// -->