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