
<!--
function time_regard()
{
day=new Date();
hr=day.getHours();
if ((hr>=6)&&(hr<8)) document.write('Good Morning!');
if ((hr>=8)&&(hr<12)) document.write('Good Morning!');
if ((hr>=12)&&(hr<14)) document.write('Good Afternoon!');
if ((hr>=14)&&(hr<18)) document.write('Good Afternoon!');
if ((hr>=18)&&(hr<23)) document.write('Good Evening');
if ((hr>=0)&&(hr<6))  document.write('Good Morning!');
}
//-->
