<!-- 
 now=new Date();
 thisYear=now.getYear();
 thisMonth=now.getMonth()+1; thisDate=now.getDate();
 if(now.getDay()==0){var thisDay="日";}
 if(now.getDay()==1){var thisDay="一";}
 if(now.getDay()==2){var thisDay="二";}
 if(now.getDay()==3){var thisDay="三";}
 if(now.getDay()==4){var thisDay="四";} 
 if(now.getDay()==5){var thisDay="五";}
 if(now.getDay()==6){var thisDay="六";}
 document.write(+thisYear+"年"+thisMonth+"月"+thisDate+"日"+"&nbsp;"+"&nbsp;"+"&nbsp;"+"星期"+thisDay);
//-->


