<!--

function ShowDate() {
day = new Date();
hr = day.getHours();
if ((hr == 1) || (hr == 2) || (hr == 3) || (hr == 4) || (hr == 5) || (hr == 6) || (hr == 7) || (hr == 8) || (hr == 9) || (hr == 10) || (hr == 11))
document.write("Good Morning");
if ((hr == 12) || (hr == 13) || (hr == 14) || (hr == 15) || (hr == 16) || (hr == 17))
document.write("Good Afternoon");
if ((hr == 18) || (hr == 19) || (hr == 20) || (hr == 21) || (hr == 22) || (hr == 23) || (hr == 0))
document.write("Good Evening");
document.write("</td></tr></h2><tr><td><p class='small'><font color=#072c63>")

m1= new Array(
"January", "February", "March", "April",
"May", "June", "July", "August", 
"September", "October", "November", "December");

today= new Date();
day= today.getDate();
year= today.getYear();

end = "th";
if (day==1) end="st";
if (day==21) end="st";
if (day==31) end="st";
if (day==2) end="nd";
if (day==22) end="nd";
if (day==3) end="rd";
if (day==23) end="rd";
day=day+end

var FullDate = (day+ " "+m1[today.getMonth()]+" "+year);
document.write(FullDate); };

ShowDate();

-->