var today = new Date ()
var hrs = today.getHours();
if (hrs < 12)
        document.write("Good Morning and ");
else if (hrs < 18)
        document.write("Good Afternoon and ");
else
     document.write("Good Evening and ");
