<!--
function makeHoliday(n){
     this.length = n*2;
     this[0]="1230"; this[1]="12月30日午前零時、オリオンを発車します。";
     this[2]="0115"; this[3]="1月15日3時15分、プレアデスに到着します。";
     this[4]="0129"; this[5]="1月29日3時15分、プレアデスを発車します。";
     this[6]="0202"; this[7]="2月2日5時25分、地球に到着します。";
     this[8]="0203"; this[9]="2月3日5時25分、地球を発車します。";
     this[10]="0218"; this[11]="2月18日23時49分、オクトパスに到着します。";
     this[12]="0223"; this[13]="2月23日13時18分、オクトパスを発車します。";
}


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();
// -->
