datetoday = new Date();
timenow=datetoday.getTime();
datetoday.setTime(timenow);
thehour = datetoday.getHours();
theminutes = datetoday.getMinutes();
thehour = String(thehour);
theminutes = String(theminutes);
thetimenow = (thehour+theminutes);
if (thetimenow >1759) display = "Evening";
else if (thetimenow >1159) display = "Afternoon";
else display = "Morning";
var greeting = ("Good " + display + ".");
document.write(greeting);