﻿d=new Date();
y=d.getYear();
m=d.getMonth()+1;
Day=d.getDate();
h=d.getHours();
if(m==1 && Day<8){
fnt1="<Font size=5 COLOR=RED>";
msg1="<B>あけまして おめでとう ございます</B>";
fnt="<Font size=4 align=\"right\" COLOR=\"#FF0080\" >";
msg="<B>今年もますます良い年でありますよう</B>";
}
else{
fnt1="<Font size=5 COLOR=GREEN>";
msg1="<b>ようこそいらっしゃいました。</b>";
fnt="<Font size=-1 align=\"right\" COLOR=\"#800080\" >";
if(h >= 0 && h <= 4) {msg = "夜はこれから、今夜も頑張るぞう！！";}
if(h >= 5 && h <=10) {msg = "おはようございまぁす、今日も一日がんばんべぇ。";}
if(h >= 11 && h <=18) {msg = "今日ものりのり、いい日でちゅう。なんて！！";}
if(h >= 19 && h <=23) {msg = "１日の おつとめ ごくろうさんでした。";}
}
document.write(fnt1+msg1+"</font><BR>");
document.write(fnt+msg+"</font><BR>");

