<!--
function makeHoliday(n){
     this.length = n*2;
     this[0]="1113"; this[1]="11月13日4時41分、ゼーラに到着します。";
     this[2]="1130"; this[3]="11月30日4時43分、ゼーラを発車します。";
     this[4]="1202"; this[5]="12月2日8時8分、コロニーに到着します。";
     this[6]="1204"; this[7]="12月4日8時8分、コロニーを発車します。";
     this[8]="1205"; this[9]="12月5日1時50分、クロレティアに到着、2時00分に発車します。";
     this[10]="1206"; this[11]="12月6日0時50分、モスガルートに到着、2時20分に発車します。";
　　 this[12]="1206"; this[13]="12月6日4時26分、ミュクレットに到着、6時32分に発車します。";
     this[14]="1213"; this[15]="12月13日0時47分、ガモズジー星に到着します。";
　　 this[16]="1214"; this[17]="12月14日8時00分、ガモズジー星を発車します。";
     this[18]="1230"; this[19]="12月30日8時00分、ベラベラスに到着、17時35分に発車します。";
     this[20]="1231"; this[21]="12月31日12時00分、アンドロメダに到着します。";
     }


dayLen = 99;
holy = new makeHoliday(dayLen);

function check()
{
     dt = new Date();
     m = "0"+(1+dt.getMonth());
     d = "0"+dt.getDate();
     m = m.substring(m.length-2,m.length+1);
     d = d.substring(d.length-2,d.length+1);
     dc = m+d;
     for(i=0; i<dayLen; i++) if (holy[i*2]==dc) document.write(holy[i*2+1],"<BR>");
}
// -->
<!--
      check();
// -->
