var now=new Date();
var hour = now.getHours();
if (hour < 12) 
  {document.write("GOOD MORNING");}
if (hour >=12 && hour < 18 )
  {document.write("GOOD AFTERNOON");}
if (hour >=12 && hour >= 18 )
  {document.write("GOOD EVENING");}
