today=new Date();
var day;
var date;
var hello;
hour=today.getHours()
if(hour < 6)hello='&nbsp;凌晨好!'
else if(hour < 9)hello='&nbsp;早上好!'
else if(hour < 12)hello='&nbsp;上午好!'
else if(hour < 14)hello='&nbsp;中午好!'
else if(hour < 17)hello='&nbsp;下午好!'
else if(hour < 19)hello='&nbsp;傍晚好!'
else if(hour < 22)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=#495401 size=3>"+ hello +"</font></strong>");
document.write("<strong><font color=#495401 size=3>"+ date +"</font></strong>");
document.write("<strong><font color=#495401 size=3>"+ day +"</font></strong>");
