<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

var now = new Date();
var month = now.getMonth();
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 = "September";
   if (month == 9) monthname = "October";
   if (month == 10) monthname = "November";
   if (month == 11) monthname = "December";
document.write('<font face="tahoma" size="1">');
document.write(" " +monthname+ " " +now.getDate()+ ", " +now.getFullYear()+ " ");
document.write('</font>');
//  End -->