function salutation(date){
date=new Date();
hod=date.getHours();
salutation_html='<table width="100%" border="0"><tr><td width="25%" align="left"></td><td width="50%" align="center"><b><font face="Comic Sans MS">';
if((hod>=0)&&(hod<=3)){salutation_html+='<font size="5" color="#3300ff">Good Morning!</font><br><font size="4" color="#990000">It\'s past midnight!<br> You\'re Really up late tonight!';}
if((hod>=4)&&(hod<=6)){salutation_html+='<font size="5" color="#3310ff">Good Morning!</font><br><font size="4" color="#ff9900">Wow! You\'re Really up early this morning!!';}
if((hod>=7)&&(hod<=9)){salutation_html+='<font size="5" color="#3301ff">Good Morning!</font><br><font size="5" color="#FF33CC">You\'re up early this morning!!';}
if((hod>=10)&&(hod<=11)){salutation_html+='<font size="5" color="#006600">Good Morning.';}
if((hod>=12)&&(hod<=17)){salutation_html+='<font size="5" color="#cccc00">Good Afternoon.';}
if((hod>=18)&&(hod<=21)){salutation_html+='<font size="5" color="#000000">Good Evening.';}
if((hod>=22)&&(hod<=23)){salutation_html+='<font size="5" color="#330000">Good Evening!</font><br><font size="5" color="#000099">You\'re up late tonight!';}
salutation_html+='</font></b></td><td width="25%" align="right"> </td></tr></table>';
document.write(salutation_html);
}


