<!--
function makeHoliday(n){
     this.length = n*2;
     this[0]="0701"; this[1]="7月1日午前零時、地球を発車します。";
     this[2]="0719"; this[3]="7月19日4時13分、冥王星に到着します。";
     this[4]="0725"; this[5]="7月25日9時34分、冥王星を発車します。";
     this[6]="0813"; this[7]="8月13日8時3分、プレアデスに到着します。";
     this[8]="0827"; this[9]="8月27日3時8分、プレアデスを発車します。";
     this[10]="1010"; this[11]="10月10日10時10分、ニケに到着、13時10分に発車します。";
     this[12]="1231"; this[13]="12月31日23時54分、エメラルダス分岐点に到着します。";
     
}


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();
// -->