<!-- Today's Date -->

<!--

months1 = new Array ( "January", "February", "March", "April", "May", "June");
months2 = new Array ( "July", "August", "September", "October", "November", "December");
months = new Array (); 
months = months1.concat ( months2 );

today = new Date ();
y = today.getFullYear();
m = months [ today.getMonth() ];
d = today.getDate();

document.write("&nbsp;&nbsp;<FONT COLOR='#a9a9a9'>",m,"</FONT>");
document.write("&nbsp;<FONT COLOR='#a9a9a9'>",d,",</FONT>");
document.write("&nbsp;<FONT COLOR='#a9a9a9'>",y,"</FONT>");

//-->

