<!-- Date Line -->
nowDate=new Date();
theDay=nowDate.getDay();
text=new Array(30);
text[0]="Sunday";
text[1]="Monday";
text[2]="Tuesday";
text[3]="Wednesday";
text[4]="Thursday";
text[5]="Friday";
text[6]="Saturday";
var months=new Array(13);
months[1]="January";
months[2]="February";
months[3]="March";
months[4]="April";
months[5]="May";
months[6]="June";
months[7]="July";
months[8]="August";
months[9]="September";
months[10]="October";
months[11]="November";
months[12]="December";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000) 
year = year + 1900; 
document.write(' 	  <td width="173"><!-- Cell 2 Top -->');
document.write('      <table width="173" height="50" cellspacing="0" cellpadding="0" border="0">');
document.write('        <tr>');
document.write('          <td valign="bottom">');
document.write('		        <font size="6" color="#304AE9">');
document.write("<b><center>" + text[theDay] + "</center></b></font>");
document.write('		        <font size="4" color="#000000">');
document.write("<center>" + lmonth + " ");
document.write(date + ", " + year + "</center></font>");
document.write('		      </td>');
document.write('        </tr>');
document.write('      </table>');
document.write('	  </td>');
