
<!-- hello.js
today=new Date();
hrs=today.getHours();
min=today.getMinutes();
sec=today.getSeconds();
clckh=""+((hrs>12)?hrs-12:hrs); 
clckm=((min<10)?"0":"")+min;
clcks=((sec<10)?"0":"")+sec;
clck=(hrs>=12)?"p.m.":"a.m.";
 document.write("<b>Good &nbsp;"); 
 if (hrs < 4)
 document.write("Morning");
 else if (hrs < 6)
 document.write("Morning");
 else if (hrs < 12)
 document.write("Morning");
 else if (hrs <= 17)
 document.write("Afternoon");
 else
 document.write("Evening");
 document.writeln("</b>");
// End hello.js -->

