today=new Date();
var day;
var date;
var hello;
hour=today.getHours()
if(hour < 8)hello='早上好!&nbsp;'
else if(hour < 12)hello='上午好!&nbsp;'
else if(hour < 14)hello='中午好!&nbsp;'
else if(hour < 19)hello='下午好!&nbsp;'
else {hello='晚上好!&nbsp;'}
day=today.getDay()
if(day==0)day='星期日&nbsp;'
else if(day==1)day='星期一&nbsp;'
else if(day==2)day='星期二&nbsp;'
else if(day==3)day='星期三&nbsp;'
else if(day==4)day='星期四&nbsp;'
else if(day==5)day='星期五&nbsp;'
else if(day==6)day='星期六&nbsp;'
date=(today.getYear())+'/'+(today.getMonth()+1)+'/'+today.getDate();
document.write("<strong><font color=#D6F700>" +day+"</font></strong>");
document.write(date);
