<!--
xxx=2	// xxx= この数字が何日後を意味します

Youbi=new Array("<font color=#ff0000>日</font>","月","火","水","木","金","<font color=#0000ff>土</font>");
X_D=new Date();
X_D.setTime(X_D.getTime()+(xxx*(24*60*60*1000)));
Mo=X_D.getMonth()+1;
Da=X_D.getDate();
Yo=Youbi[X_D.getDay()];
document.write(Mo+'月'+Da+'日('+Yo+')');
document.close();
// -->