//时间显示
time=new  Date();
year=time.getYear();
month=time.getMonth()+1;
day=time.getDate();
with(document){
write("<span style='color:#115599'>")
write("今天是："+year+"年"+month+"月"+day+"日"+"  ")
write('星期'+'日一二三四五六'.charAt(time.getDay()))
write("</span>")
}
