// Written by Skribz
// Copyright 1999
var now = new Date();
var month = now.getMonth();
var date = now.getDate();
var year = now.getYear();
var monthname;
   if (month == 0) monthname = "January";
   if (month == 1) monthname = "February";
   if (month == 2) monthname = "March";
   if (month == 3) monthname = "April";
   if (month == 4) monthname = "May";
   if (month == 5) monthname = "June";
   if (month == 6) monthname = "July";
   if (month == 7) monthname = "August";
   if (month == 8) monthname = "Sept.";
   if (month == 9) monthname = "October";
   if (month == 10) monthname = "November";
   if (month == 11) monthname = "December";
var fyear = "2006"
document.write('<font class=text2a>Today: ');
document.write("" +monthname+ " " +date+ ", " +fyear+ "");
document.write('</font>');