<!--
n=new Date();
y=n.getFullYear();
mn= n.getMonth()+1;
weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
dd= weekday[n.getDay()];
d= n.getDate();
h=n.getHours();
m=n.getMinutes();
m = m + "";
if (m.length == 1)
   {
   m = "0" + m;
   }


s=n.getSeconds();
if(mn==1)
{document.write(" "+dd+", "+d+" January "+y+" | "+h+":"+m)}
if(mn==2)
{document.write(" "+dd+", "+d+" February "+y+" | "+h+":"+m)}
if(mn==3)
{document.write(" "+dd+", "+d+" March "+y+" | "+h+":"+m)}
if(mn==4)
{document.write(" "+dd+", "+d+" April "+y+" | "+h+":"+m)}
if(mn==5)
{document.write(" "+dd+", "+d+" May "+y+" | "+h+":"+m)}
if(mn==6)
{document.write(" "+dd+", "+d+" June "+y+" | "+h+":"+m)}
if(mn==7)
{document.write(" "+dd+", "+d+" July "+y+" | "+h+":"+m)}
if(mn==8)
{document.write(" "+dd+", "+d+" August "+y+" | "+h+":"+m)}
if(mn==9)
{document.write(" "+dd+", "+d+" September "+y+" | "+h+":"+m)}
if(mn==10)
{document.write(" "+dd+", "+d+" October "+y+" | "+h+":"+m)}
if(mn==11)
{document.write(" "+dd+", "+d+" November "+y+" | "+h+":"+m)}
if(mn==12)
{document.write(" "+dd+", "+d+" December "+y+" | "+h+":"+m)}

if(h < 12)
{document.write(" | Good Morning")}
if ((h > 11) && (h < 18)) 
{document.write(" | Good Afternoon")}
if(h > 17)
{document.write(" | Good Evening")}

// -->
