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


