<!--
function makeHoliday(n){
     this.length = n*2;
     this[0]="0716"; this[1]="7月16日3時00分、トレーダーを発車します。";
     this[2]="0801"; this[3]="8月1日13時21分、エメラルダスに到着します。";
     this[4]="0802"; this[5]="8月2日13時20分、エメラルダスを発車します。";
     this[6]="0805"; this[7]="8月5日11時00分、ニケに到着、14時00分に発車します。";
     this[8]="0904"; this[9]="9月4日13時00分、オリオンに到着します。";
     this[10]="0928"; this[11]="9月28日13時00分、オリオンを発車します。";
     this[12]="1013"; this[13]="10月13日16時15分、プレアデスに到着します。";
 this[14]="1027"; this[15]="10月27日16時15分、プレアデスを発車します。";
     this[16]="1029"; this[17]="10月29日22時50分、アルデバランに到着します。";
}


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();
// -->
