
<!-- Begin
todaydate = new Date();
timeis=todaydate.getTime();
todaydate.setTime(timeis);
houris = todaydate.getHours();
if (houris > 15) display = "Evening";
else if (houris >12) display = "Afternoon";
else display = "Morning";
//var welcome = ("Good " + display + ".  Welcome to ");
var welcome = ("Good " + display );
document.write(welcome);
// End -->


