<!--
function makeHoliday(n){
     this.length = n*2;
     this[0]="0222"; this[1]="2月22日22時22分、地球を発車します。";
     this[2]="0427"; this[3]="4月27日19時47分、フリードに到着します。";
     this[4]="0429"; this[5]="4月29日4時13分、フリードを発車します。";
     this[6]="0503"; this[7]="5月3日12時00分、ベガに到着します。";
     this[8]="0519"; this[9]="5月19日7時30分、ベガを発車します。";
     this[10]="0608"; this[11]="6月8日7時6分、カペラに到着します。";
}


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();
// -->
