<!--
var d=new Date;
var h=d.getHours();
var msg="";
var targ;

function greeting(){
if(h<12)
  msg="Good Morning, ";
else if(h>=12 && h<18)
  msg="Good Afternoon, ";
else
  msg="Good Evening, ";
document.write(msg);}
/-->
