var FestivalDay={getDay:function(id){var _=[];_['0101']='元旦';_['1225']='圣诞节';return _[id];},getWeek:function(id){var _=['星期日','星期一','星期二','星期三','星期四','星期五','星期六'];return _[id];},getString:function(){var now=new Date();var y=now.getFullYear();var m=now.getMonth()+1;var d=now.getDate();var w=now.getDay();m<10?m=0+''+m:0;d<10?d=0+''+d:0;var index=m+''+d;var festival=this.getDay(index);if(!festival||y!=2009){festival='';}var r=y+'年'+(m-0)+'月'+(d-0)+'日　'+this.getWeek(w)+'　'+festival;return r;},show:function(){document.write(this.getString());}}
