document.writeln("<SCRIPT LANGUAGE=\"JavaScript\">");
document.writeln("<!--");
document.writeln("function   DaysNumberofDate(DateGL){   ");
document.writeln("  return   parseInt((Date.parse(DateGL)-Date.parse(DateGL.getYear()+\"\/1\/1\"))\/86400000)+1;   ");
document.writeln("  }   ");
document.writeln("  function   CnDateofDate(DateGL){   ");
document.writeln("  var   CnData=new   Array(   ");
document.writeln("  0x16,0x2a,0xda,0x00,0x83,0x49,0xb6,0x05,0x0e,0x64,0xbb,0x00,0x19,0xb2,0x5b,0x00,   ");
document.writeln("  0x87,0x6a,0x57,0x04,0x12,0x75,0x2b,0x00,0x1d,0xb6,0x95,0x00,0x8a,0xad,0x55,0x02,   ");
document.writeln("  0x15,0x55,0xaa,0x00,0x82,0x55,0x6c,0x07,0x0d,0xc9,0x76,0x00,0x17,0x64,0xb7,0x00,   ");
document.writeln("  0x86,0xe4,0xae,0x05,0x11,0xea,0x56,0x00,0x1b,0x6d,0x2a,0x00,0x88,0x5a,0xaa,0x04,   ");
document.writeln("  0x14,0xad,0x55,0x00,0x81,0xaa,0xd5,0x09,0x0b,0x52,0xea,0x00,0x16,0xa9,0x6d,0x00,   ");
document.writeln("  0x84,0xa9,0x5d,0x06,0x0f,0xd4,0xae,0x00,0x1a,0xea,0x4d,0x00,0x87,0xba,0x55,0x04   ");
document.writeln("  );   ");
document.writeln("  var   CnMonth=new   Array();   ");
document.writeln("  var   CnMonthDays=new   Array();   ");
document.writeln("  var   CnBeginDay;   ");
document.writeln("  var   LeapMonth;   ");
document.writeln("  var   Bytes=new   Array();   ");
document.writeln("  var   I;   ");
document.writeln("  var   CnMonthData;   ");
document.writeln("  var   DaysCount;   ");
document.writeln("  var   CnDaysCount;   ");
document.writeln("  var   ResultMonth;   ");
document.writeln("  var   ResultDay;   ");
document.writeln("  var   yyyy=DateGL.getYear();   ");
document.writeln("  var   mm=DateGL.getMonth()+1;   ");
document.writeln("  var   dd=DateGL.getDate();   ");
document.writeln("  if(yyyy<100)   yyyy+=1900;   ");
document.writeln("  if   ((yyyy   <   1997)   ||   (yyyy   >   2020)){   ");
document.writeln("  return   0;   ");
document.writeln("  }   ");
document.writeln("  Bytes[0]   =   CnData[(yyyy   -   1997)   *   4];   ");
document.writeln("  Bytes[1]   =   CnData[(yyyy   -   1997)   *   4   +   1];   ");
document.writeln("  Bytes[2]   =   CnData[(yyyy   -   1997)   *   4   +   2];   ");
document.writeln("  Bytes[3]   =   CnData[(yyyy   -   1997)   *   4   +   3];   ");
document.writeln("  if   ((Bytes[0]   &   0x80)   !=   0)   {CnMonth[0]   =   12;}   ");
document.writeln("  else   {CnMonth[0]   =   11;}   ");
document.writeln("  CnBeginDay   =   (Bytes[0]   &   0x7f);   ");
document.writeln("  CnMonthData   =   Bytes[1];   ");
document.writeln("  CnMonthData   =   CnMonthData   <<   8;   ");
document.writeln("  CnMonthData   =   CnMonthData   |   Bytes[2];   ");
document.writeln("  LeapMonth   =   Bytes[3];   ");
document.writeln("  for   (I=15;I>=0;I--){   ");
document.writeln("  CnMonthDays[15   -   I]   =   29;   ");
document.writeln("  if   (((1   <<   I)   &   CnMonthData)   !=   0   ){   ");
document.writeln("  CnMonthDays[15   -   I]++;   ");
document.writeln("  }   ");
document.writeln("  if   (CnMonth[15   -   I]   ==   LeapMonth   ){   ");
document.writeln("  CnMonth[15   -   I   +   1]   =   -   LeapMonth;   ");
document.writeln("  }else{   ");
document.writeln("  if   (CnMonth[15   -   I]   <   0   ){CnMonth[15   -   I   +   1]   =   -   CnMonth[15   -   I]   +   1;}   ");
document.writeln("  else   {CnMonth[15   -   I   +   1]   =   CnMonth[15   -   I]   +   1;}   ");
document.writeln("  if   (CnMonth[15   -   I   +   1]   >   12   ){   CnMonth[15   -   I   +   1]   =   1;}   ");
document.writeln("  }   ");
document.writeln("  }   ");
document.writeln("  DaysCount   =   DaysNumberofDate(DateGL)   -   1;   ");
document.writeln("  if   (DaysCount   <=   (CnMonthDays[0]   -   CnBeginDay)){   ");
document.writeln("  if   ((yyyy   >   1901)   &&   (CnDateofDate(new   Date((yyyy   -   1)+\"\/12\/31\"))   <   0)){   ");
document.writeln("  ResultMonth   =   -   CnMonth[0];   ");
document.writeln("  }else{   ");
document.writeln("  ResultMonth   =   CnMonth[0];   ");
document.writeln("  }   ");
document.writeln("  ResultDay   =   CnBeginDay   +   DaysCount;   ");
document.writeln("  }else{   ");
document.writeln("  CnDaysCount   =   CnMonthDays[0]   -   CnBeginDay;   ");
document.writeln("  I   =   1;   ");
document.writeln("  while   ((CnDaysCount   <   DaysCount)   &&   (CnDaysCount   +   CnMonthDays[I]   <   DaysCount)){   ");
document.writeln("  CnDaysCount+=   CnMonthDays[I];   ");
document.writeln("  I++;   ");
document.writeln("  }   ");
document.writeln("  ResultMonth   =   CnMonth[I];   ");
document.writeln("  ResultDay   =   DaysCount   -   CnDaysCount;   ");
document.writeln("  }   ");
document.writeln("  if   (ResultMonth   >   0){   ");
document.writeln("  return   ResultMonth   *   100   +   ResultDay;   ");
document.writeln("  }else{   ");
document.writeln("  return   ResultMonth   *   100   -   ResultDay;   ");
document.writeln("  }   ");
document.writeln("  }   ");
document.writeln("  function   CnYearofDate(DateGL){   ");
document.writeln("  var   YYYY=DateGL.getYear();   ");
document.writeln("  var   MM=DateGL.getMonth()+1;   ");
document.writeln("  var   CnMM=parseInt(Math.abs(CnDateofDate(DateGL))\/100);   ");
document.writeln("  if(YYYY<100)   YYYY+=1900;   ");
document.writeln("  if(CnMM>MM)   YYYY--;   ");
document.writeln("  YYYY-=1864;   ");
document.writeln("  return   CnEra(YYYY)+\"年\";   ");
document.writeln("  }   ");
document.writeln("  function   CnMonthofDate(DateGL){   ");
document.writeln("  var     CnMonthStr=new   Array(\"零\",\"正\",\"二\",\"三\",\"四\",\"五\",\"六\",\"七\",\"八\",\"九\",\"十\",\"冬\",\"腊\");   ");
document.writeln("  var     Month;   ");
document.writeln("  Month   =   parseInt(CnDateofDate(DateGL)\/100);   ");
document.writeln("  if   (Month   <   0){   ");
document.writeln("  return   \"闰\"   +   CnMonthStr[-Month]   +   \"月\";   ");
document.writeln("  }else{   ");
document.writeln("  return   CnMonthStr[Month]   +   \"月\";   ");
document.writeln("  }   ");
document.writeln("  }   ");
document.writeln("  function   CnDayofDate(DateGL){   ");
document.writeln("  var   CnDayStr=new   Array(\"零\",   ");
document.writeln("  \"初一\",   \"初二\",   \"初三\",   \"初四\",   \"初五\",   ");
document.writeln("  \"初六\",   \"初七\",   \"初八\",   \"初九\",   \"初十\",   ");
document.writeln("  \"十一\",   \"十二\",   \"十三\",   \"十四\",   \"十五\",   ");
document.writeln("  \"十六\",   \"十七\",   \"十八\",   \"十九\",   \"二十\",   ");
document.writeln("  \"廿一\",   \"廿二\",   \"廿三\",   \"廿四\",   \"廿五\",   ");
document.writeln("  \"廿六\",   \"廿七\",   \"廿八\",   \"廿九\",   \"三十\");   ");
document.writeln("  var   Day;   ");
document.writeln("  Day   =   (Math.abs(CnDateofDate(DateGL)))%100;   ");
document.writeln("  return   CnDayStr[Day];   ");
document.writeln("  }   ");
document.writeln("  function   DaysNumberofMonth(DateGL){   ");
document.writeln("  var   MM1=DateGL.getYear();   ");
document.writeln("  MM1<100   ?   MM1+=1900:MM1;   ");
document.writeln("  var   MM2=MM1;   ");
document.writeln("  MM1+=\"\/\"+(DateGL.getMonth()+1);   ");
document.writeln("  MM2+=\"\/\"+(DateGL.getMonth()+2);   ");
document.writeln("  MM1+=\"\/1\";   ");
document.writeln("  MM2+=\"\/1\";   ");
document.writeln("  return   parseInt((Date.parse(MM2)-Date.parse(MM1))\/86400000);   ");
document.writeln("  }   ");
document.writeln("  function   CnEra(YYYY){   ");
document.writeln("  var   Tiangan=new   Array(\"甲\",\"乙\",\"丙\",\"丁\",\"戊\",\"己\",\"庚\",\"辛\",\"壬\",\"癸\");   ");
document.writeln("  \/\/var   Dizhi=new   Array(\"子(鼠)\",\"丑(牛)\",\"寅(虎)\",\"卯(兔)\",\"辰(龙)\",\"巳(蛇)\",   ");
document.writeln("                                          \/\/\"午(马)\",\"未(羊)\",\"申(猴)\",\"酉(鸡)\",\"戌(狗)\",\"亥(猪)\");   ");
document.writeln("  var   Dizhi=new   Array(\"子\",\"丑\",\"寅\",\"卯\",\"辰\",\"巳\",\"午\",\"未\",\"申\",\"酉\",\"戌\",\"亥\");   ");
document.writeln("  return   Tiangan[YYYY%10]+Dizhi[YYYY%12];   ");
document.writeln("  }   ");
document.writeln("  function   CnDateofDateStr(DateGL){   ");
document.writeln("      if(CnMonthofDate(DateGL)==\"零月\")   return   \"　请调整您的计算机日期!\";   ");
document.writeln("      else   return   \"农历\"+CnYearofDate(DateGL)+   \"<br>\"   +   CnMonthofDate(DateGL)   +   CnDayofDate(DateGL)   +   \"<br>\"   +   SolarTerm(DateGL);   ");
document.writeln("  }   ");
document.writeln("  function   SolarTerm(DateGL){   ");
document.writeln("  var   SolarTermStr=new   Array(   ");
document.writeln("  \"小寒\",\"大寒\",\"立春\",\"雨水\",\"惊蛰\",\"春分\",   ");
document.writeln("  \"清明\",\"谷雨\",\"立夏\",\"小满\",\"芒种\",\"夏至\",   ");
document.writeln("  \"小暑\",\"大暑\",\"立秋\",\"处暑\",\"白露\",\"秋分\",   ");
document.writeln("  \"寒露\",\"霜降\",\"立冬\",\"小雪\",\"大雪\",\"冬至\");   ");
document.writeln("  var   DifferenceInMonth=new   Array(   ");
document.writeln("  1272060,1275495,1281180,1289445,1299225,1310355,   ");
document.writeln("  1321560,1333035,1342770,1350855,1356420,1359045,   ");
document.writeln("  1358580,1355055,1348695,1340040,1329630,1318455,   ");
document.writeln("  1306935,1297380,1286865,1277730,1274550,1271556);   ");
document.writeln("  var   DifferenceInYear=31556926;   ");
document.writeln("  var   BeginTime=new   Date(1901\/1\/1);   ");
document.writeln("  BeginTime.setTime(947120460000);   ");
document.writeln("  for(;DateGL.getYear()<BeginTime.getYear();){   ");
document.writeln("  BeginTime.setTime(BeginTime.getTime()-DifferenceInYear*1000);   ");
document.writeln("  }   ");
document.writeln("  for(;DateGL.getYear()>BeginTime.getYear();){   ");
document.writeln("  BeginTime.setTime(BeginTime.getTime()+DifferenceInYear*1000);   ");
document.writeln("  }   ");
document.writeln("  for(var   M=0;DateGL.getMonth()>BeginTime.getMonth();M++){   ");
document.writeln("  BeginTime.setTime(BeginTime.getTime()+DifferenceInMonth[M]*1000);   ");
document.writeln("  }   ");
document.writeln("  if(DateGL.getDate()>BeginTime.getDate()){   ");
document.writeln("  BeginTime.setTime(BeginTime.getTime()+DifferenceInMonth[M]*1000);   ");
document.writeln("  M++;   ");
document.writeln("  }   ");
document.writeln("  if(DateGL.getDate()>BeginTime.getDate()){   ");
document.writeln("  BeginTime.setTime(BeginTime.getTime()+DifferenceInMonth[M]*1000);   ");
document.writeln("  M==23?M=0:M++;   ");
document.writeln("  }   ");
document.writeln("  var   JQ;   ");
document.writeln("  if(DateGL.getDate()==BeginTime.getDate()){   ");
document.writeln("  JQ=\"今日<font   color=\'#000000\'><b>\"+SolarTermStr[M]   +   \"<\/b><\/font>\";   ");
document.writeln("  }else   if(DateGL.getDate()==BeginTime.getDate()-1){   ");
document.writeln("  JQ=\"明日<font   color=\'#000000\'><b>\"+SolarTermStr[M]   +   \"<\/b><\/font>\";   ");
document.writeln("  }else   if(DateGL.getDate()==BeginTime.getDate()-2){   ");
document.writeln("  JQ=\"后日<font   color=\'#000000\'><b>\"+SolarTermStr[M]   +   \"<\/b><\/font>\";   ");
document.writeln("  }else{   ");
document.writeln("  JQ=\"   \"   ");
document.writeln("  if(DateGL.getMonth()==BeginTime.getMonth()){   ");
document.writeln("  JQ+=\"本月\";   ");
document.writeln("  }else{   ");
document.writeln("  JQ+=\"下月\";   ");
document.writeln("  }   ");
document.writeln("  JQ+=BeginTime.getDate()+\"日\"+\"<font   color=\'#000000\'><b>\"+SolarTermStr[M]+\"<\/b><\/font>\";   ");
document.writeln("  }   ");
document.writeln("  return   JQ;   ");
document.writeln("  }   ");
document.writeln("  function   CAL()   ");
document.writeln("  {}   ");
document.writeln("  \/\/RunGLNL();");
document.writeln("  function   CurentTime(){     ");
document.writeln("  var   now   =   new   Date();     ");
document.writeln("  var   hh   =   now.getHours();     ");
document.writeln("  var   mm   =   now.getMinutes();     ");
document.writeln("  var   ss   =   now.getTime()   %   60000;     ");
document.writeln("  ss   =   (ss   -   (ss   %   1000))   \/   1000;     ");
document.writeln("  var   clock   =   hh+\':\';     ");
document.writeln("  if   (mm   <   10)   clock   +=   \'0\';     ");
document.writeln("  clock   +=   mm+\':\';     ");
document.writeln("  if   (ss   <   10)   clock   +=   \'0\';     ");
document.writeln("  clock   +=   ss;     ");
document.writeln("  return(clock);     ");
document.writeln("  }   ");
document.writeln("\/\/ShowClock();");
document.writeln("\/\/-->");
document.writeln("var m=new Array();");
document.writeln("var ddate=new Array();");
document.writeln("var dname=new Array();");
document.writeln("m[1]=1;ddate[1]=\"1\";dname[1]=\"今天是“元旦”，祝您新年快乐！\";");
document.writeln("m[2]=2;ddate[2]=\"14\";dname[2]=\"\";");
document.writeln("m[3]=3;ddate[3]=\"5\";dname[3]=\"温馨提示：今天是“中国青年志愿者服务日”\";");
document.writeln("m[4]=3;ddate[4]=\"8\";dname[4]=\"今天是“国际三八妇女节”，祝全球女士节日快乐！”\";");
document.writeln("m[5]=3;ddate[5]=\"12\";dname[5]=\"今天是“中国植树节”，多一片绿叶，多一份温馨！”！\";");
document.writeln("m[6]=3;ddate[6]=\"15\";dname[6]=\"温馨提示：今天是“国际消费者权益日”\";");
document.writeln("m[7]=4;ddate[7]=\"1\";dname[7]=\"今天是“国际愚人节”，注意！别让他人捉弄了\";");
document.writeln("m[8]=4;ddate[8]=\"22\";dname[8]=\"今天是“世界地球日”请大家保护资源环境,善待地球！\";");
document.writeln("m[9]=5;ddate[9]=\"4\";dname[9]=\"今天是“中国青年节，祝广大青年节日快乐！\";");
document.writeln("m[10]=5;ddate[10]=\"8\";dname[10]=\"温馨提示：今天是“国际红十字日”\";");
document.writeln("m[11]=5;ddate[11]=\"12\";dname[11]=\"今天是“国际护士节”，祝全球护士节日快乐！\";");
document.writeln("m[12]=5;ddate[12]=\"31\";dname[12]=\"温馨提示：今天是“世界无烟日”\";");
document.writeln("\/\/");
document.writeln("m[13]=5;ddate[13]=\"10\";dname[13]=\"今天是“母亲节”，祝天下所有母亲节日快乐！\";");
document.writeln("\/\/,五月的第二个星期日");
document.writeln("m[14]=5;ddate[14]=\"19\";dname[14]=\"\";");
document.writeln("\/\/，五月的第三个星期日");
document.writeln("m[15]=6;ddate[15]=\"1\";dname[15]=\"今天是“国际儿童节”，祝小朋友节日快乐！\";");
document.writeln("m[16]=6;ddate[16]=\"25\";dname[16]=\"温馨提示：今天是“全国土地日”\";");
document.writeln("\/\/");
document.writeln("m[17]=6;ddate[17]=\"19\";dname[17]=\"今天是“父亲节”，祝所有父亲节日快乐！\";");
document.writeln("\/\/，六月的第三个星期日");
document.writeln("m[18]=7;ddate[18]=\"1\";dname[18]=\"\";");
document.writeln("m[19]=7;ddate[19]=\"1\";dname[19]=\"温馨提示：今天是“香港回归纪念日”\";");
document.writeln("m[20]=7;ddate[20]=\"7\";dname[20]=\"今天是“中国人民抗日战争纪念日”莫忘国耻，追怀英雄！\";");
document.writeln("m[21]=7;ddate[21]=\"11\";dname[21]=\"今天是“世界人口日”提倡平等,增强能力！\";");
document.writeln("m[22]=8;ddate[22]=\"1\";dname[22]=\"温馨提示：今天是“中国人民解放军建军节”\";");
document.writeln("m[23]=8;ddate[23]=\"8\";dname[23]=\"温馨提示：今天是“中国男子节(爸爸节)”\";");
document.writeln("m[24]=8;ddate[24]=\"15\";dname[24]=\"温馨提示：今天是“日本正式宣布无条件投降日”\";");
document.writeln("m[25]=9;ddate[25]=\"3\";dname[25]=\"温馨提示：今天是“中国抗日战争胜利纪念日”\";");
document.writeln("m[26]=9;ddate[26]=\"10\";dname[26]=\"今天是“中国教师节”，祝中国所有老师节日快乐！\";");
document.writeln("m[27]=9;ddate[27]=\"18\";dname[27]=\"温馨提示：今天是“九·一八事变纪念日”\";");
document.writeln("m[28]=9;ddate[28]=\"21\";dname[28]=\"温馨提示：今天是“国际和平日”\";");
document.writeln("m[29]=10;ddate[29]=\"1\";dname[29]=\"今天是“国庆节”，祝您节日快乐！\";");
document.writeln("m[30]=10;ddate[30]=\"1\";dname[30]=\"\";");
document.writeln("m[31]=11;ddate[31]=\"10\";dname[31]=\"温馨提示：今天是“世界青年节”\";");
document.writeln("m[32]=11;ddate[32]=\"17\";dname[32]=\"温馨提示：今天是“国际大学生节(国际学生日)”\";");
document.writeln("m[33]=11;ddate[33]=\"21\";dname[33]=\"温馨提示：今天是“世界电视日”\";");
document.writeln("m[34]=11;ddate[34]=\"21\";dname[34]=\"“世界问候日”\";");
document.writeln("m[35]=12;ddate[35]=\"1\";dname[35]=\"温馨提示：今天是“世界艾滋病日”\";");
document.writeln("m[36]=12;ddate[36]=\"3\";dname[36]=\"温馨提示：今天是“世界残疾人日”\";");
document.writeln("m[37]=12;ddate[37]=\"10\";dname[37]=\"温馨提示：今天是“世界人权日”\";");
document.writeln("m[38]=12;ddate[38]=\"13\";dname[38]=\"今天是“南京大屠杀纪念日”莫忘国耻，绚怀烈士！\";");
document.writeln("m[39]=12;ddate[39]=\"20\";dname[39]=\"温馨提示：今天是“澳门回归纪念日”\";");
document.writeln("m[40]=12;ddate[40]=\"25\";dname[40]=\"今天是“圣诞节”，祝您节日快乐！\";");
document.writeln("m[44]=11;ddate[44]=\"8\";dname[44]=\"今天是“记者节”，祝各位记者朋友节日快乐！\";");
document.writeln("m[45]=3;ddate[45]=\"23\";dname[45]=\"温馨提示：今天是“世界气象日”\";");
document.writeln("m[46]=5;ddate[46]=\"17\";dname[46]=\"温馨提示：今天是“世界电信日”\";");
document.writeln("m[47]=6;ddate[47]=\"5\";dname[47]=\"温馨提示：今天是“世界环境日”\";");
document.writeln("m[48]=9;ddate[48]=\"23\";dname[48]=\"今天是“[节气]秋分”，天气转凉，注意保暖！\";");
document.writeln("m[49]=12;ddate[49]=\"26\";dname[49]=\"温馨提示：今天是伟人“毛泽东诞辰纪念日(1893)”\";");
document.writeln("\/\/");
document.writeln("m[41]=10;ddate[41]=\"3\";dname[41]=\"今天是“中秋节”，祝您节日快乐！\";");
document.writeln("m[42]=10;ddate[42]=\"26\";dname[42]=\"今天是“重阳节”，祝您节日快乐！\";");
document.writeln("m[43]=12;ddate[43]=\"22\";dname[43]=\"今天是“[节气]冬至”，天气寒冷，注意防寒！\";");
document.writeln("m[44]=1;ddate[44]=\"2\";dname[44]=\"今天是“元旦假期第二天”祝您节日快乐！\";");
document.writeln("m[45]=1;ddate[45]=\"3\";dname[45]=\"今天是“元旦假期第三天”\";");
document.writeln("m[46]=12;ddate[46]=\"31\";dname[46]=\"温馨提示：明天是“元旦假期”提前祝您新年快乐！\";");
document.writeln("m[47]=4;ddate[47]=\"30\";dname[47]=\"温馨提示：明天是“五一节”提前祝您节日快乐！\";");
document.writeln("m[48]=9;ddate[48]=\"25\";dname[48]=\"\";");
document.writeln("m[49]=2;ddate[49]=\"13\";dname[49]=\"今天是“大年除夕”祝您新春快乐！\";");
document.writeln("\/\/");
document.writeln("m[50]=2;ddate[50]=\"14\";dname[50]=\"今天是“中国春节”，恭祝您新春快乐，万事如意！\";");
document.writeln("m[51]=2;ddate[51]=\"28\";dname[51]=\"今天是“中国元宵节”，祝您节日快乐！\";");
document.writeln("m[52]=4;ddate[52]=\"5\";dname[52]=\"今天是“清明节”，祝您节日快乐！\";");
document.writeln("m[53]=6;ddate[53]=\"16\";dname[53]=\"今天是“端午节”，祝您节日快乐！\";");
document.writeln("m[54]=8;ddate[54]=\"26\";dname[54]=\"今天是“七夕节”，祝您节日快乐！\";");
document.writeln("m[55]=1;ddate[55]=\"22\";dname[55]=\"今天是“腊八节”，祝您节日快乐！\";");
document.writeln("\/\/名人纪念日");
document.writeln("m[56]=1;ddate[56]=\"8\";dname[56]=\"温馨提示：今天是伟人“周恩来逝世纪念日(1976)”\";");
document.writeln("m[57]=7;ddate[57]=\"6\";dname[57]=\"温馨提示：今天是“朱德逝世纪念日(1976)”\";");
document.writeln("m[58]=1;ddate[58]=\"12\";dname[58]=\"\";");
document.writeln("\/\/");
document.writeln("m[59]=2;ddate[59]=\"13\";dname[59]=\"\";");
document.writeln("m[60]=3;ddate[60]=\"10\";dname[60]=\"今天是农历正月二五，添仓节\";");
document.writeln("m[61]=3;ddate[61]=\"17\";dname[61]=\"今天是农历二月初二，龙抬头\";");
document.writeln("\/\/");
document.writeln("m[62]=5;ddate[62]=\"1\";dname[62]=\"今天是“五一国际劳动节”，祝您节日快乐！\";");
document.writeln("m[63]=5;ddate[63]=\"2\";dname[63]=\"今天是“五一假期第二天”，祝您假日快乐！\";");
document.writeln("m[64]=5;ddate[64]=\"3\";dname[64]=\"今天是“五一假期第三天”，祝您假日快乐！\";");
document.writeln("\/\/");
document.writeln("m[65]=10;ddate[65]=\"1\";dname[65]=\"今天是“中秋国庆假期第一天”，祝您假日快乐！\";");
document.writeln("m[66]=10;ddate[66]=\"2\";dname[66]=\"今天是“中秋国庆假期第二天”，祝您假日快乐！\";");
document.writeln("m[67]=10;ddate[67]=\"3\";dname[67]=\"今天是“中秋国庆假期第三天”，祝您假日快乐！\";");
document.writeln("m[68]=10;ddate[68]=\"4\";dname[68]=\"今天是“中秋国庆假期第四天”，祝您假日快乐！\";");
document.writeln("m[69]=10;ddate[69]=\"5\";dname[69]=\"今天是“中秋国庆假期第五天”，祝您假日快乐！\";");
document.writeln("m[70]=10;ddate[70]=\"6\";dname[70]=\"今天是“中秋国庆假期第六天”，祝您假日快乐！\";");
document.writeln("\/\/");
document.writeln("m[71]=2;ddate[71]=\"15\";dname[71]=\"今天是“春节假期第三天”，祝您新春快乐！\";");
document.writeln("m[72]=2;ddate[72]=\"16\";dname[72]=\"今天是“春节假期第四天”，祝您新春快乐！\";");
document.writeln("m[73]=2;ddate[73]=\"17\";dname[73]=\"今天是“春节假期第五天”，祝您新春快乐！\";");
document.writeln("m[74]=2;ddate[74]=\"18\";dname[74]=\"今天是“春节假期第六天”，祝您新春快乐！\";");
document.writeln("m[75]=2;ddate[75]=\"19\";dname[75]=\"今天是“春节假期第七天”，祝您新春快乐！\";");
document.writeln("m[76]=2;ddate[76]=\"12\";dname[76]=\"明天是“大年除夕”提前祝您新春快乐！\";");
document.writeln("m[77]=5;ddate[77]=\"18\";dname[77]=\"今天是“中采网八周年庆典”快乐网络每一天！\";");
document.writeln("");
document.writeln("function showtoday(){");
document.writeln("today=new Date();");
document.writeln("var tomon=today.getMonth()+1;");
document.writeln("var todate=today.getDate();");
document.writeln("var f=0");
document.writeln("var todayinfo=\'<FONT color=\"#000000\"><\/font>\';");
document.writeln("for(var i=1;i<m.length;i++){");
document.writeln("if (m[i]==tomon && ddate[i]==todate){f=f+1;todayinfo=todayinfo+dname[i];}");
document.writeln("}");
document.writeln("if(f==0){todayinfo=todayinfo+\"电子元器件产品采购展示交易平台\";}");
document.writeln("");
document.writeln("return todayinfo;");
document.writeln("}");
document.writeln("document.writeln(showtoday());");
document.writeln("");
document.writeln("\/\/-->");
document.writeln("<\/SCRIPT>")