<!--
function makeHoliday(n){
     this.length = n*2;
     this[0]="1110"; this[1]="11月10日21時6分、カペラに到着します。";
     this[2]="0708"; this[3]="7月8日16時00分、カペラを発車します。";
     this[4]="0713"; this[5]="7月13日21時51分、マザービーナスに到着します。";
     this[6]="0717"; this[7]="7月17日21時51分、マザービーナスを発車します。";
     this[8]="0724"; this[9]="7月24日13時00分、オリオンに到着します。";
     this[10]="0809"; this[11]="8月9日13時00分、オリオンを発車します。";
     this[12]="0908"; this[13]="9月8日12時00分、ニケに到着、15時00分に発車します。";
     this[14]="0922"; this[15]="9月22日3時5分、アルカディアに到着します。";
     this[16]="0925"; this[17]="9月25日3時13分、アルカディアを発車します。";
     this[18]="1002"; this[19]="10月2日11時8分、地球に到着します。";
this[20]="1003"; this[21]="10月3日11時8分、地球を発車します。";
     this[22]="1005"; this[23]="10月5日2時00分、ベガに到着します。";
this[24]="1021";this[25]="10月21日21時30分、ベガを発車します。";
}


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();
// -->
