<!--

var thisday=new Date();

var hour=thisday.getHours();

if(hour<10)

document.write("<b>Selamat Pagi ...</b>");

else if(hour<16)

document.write("<b>Selamat Siang,  </b>");

else if(hour<18)

document.write("<b>Selamat Sore,  </b>");

else

document.write("<b>Selamat Malam,  </b>");

//-->
