<!--
function PrintMessage(){
    date=new Date();
    h=date.getHours();
     if(5<=h && h<7){
        document.write("　　　まだ、暗いよ。時間はたっぷりごゆっくりどうぞ。");
     }
     else if(7<=h && h<10){
        document.write("　　　おはようございます。zzie も覚めました。");
     }
     else if(10<=h && h<16){
        document.write("　　　　　こんにちは。お元気ですか。");
     }
     else if(16<=h && h<17){
        document.write("　　　　もうすぐ、アフターファイブ。頑張りましょう");
     }   
     else if(17<=h && h<22){
        document.write("　　　　　こんばんは。ご訪問ありがとうございます。");
     }
     else if(22<=h && h<23){
        document.write("　　　　　もう遅いけど、ごゆっくりどうぞ。");
     }
     else{
        document.write("　　　夜明けまではまだ長い　ゆっくりご覧下さい。");
     }   
}
//-->