<!--
function makeHoliday(n){
     this.length = n*2;
     this[0]="0831"; this[1]="8月31日23時50分、オリオンを発車します。";
     this[2]="0916"; this[3]="9月16日3時5分、プレアデスに到着します。";
     this[4]="0930"; this[5]="9月30日3時5分、プレアデスを発車します。";
     this[6]="0931"; this[7]="9月31日4時4分、ベテルギウスに到着します。";
     this[8]="1001"; this[9]="10月1日4時4分、ベテルギウスを発車します。";
     this[10]="1006"; this[11]="10月6日6時29分、マザービーナスに到着します。";
     this[12]="1010"; this[13]="10月10日7時10分、マザービーナスを発車します。";
     this[14]="1019"; this[15]="10月19日23時50分、ギューマ星に到着します。";
     this[16]="1020"; this[17]="10月20日23時50分、ギューマ星を発車します。";
     this[18]="1021"; this[19]="10月21日21時8分、大王星に到着します。";
}


dayLen = 30;
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();
// -->

