RawDate = new Date();

Months = new Array(12);
Months[0]  = "January";
Months[1]  = "February";
Months[2]  = "March";
Months[3]  = "April";
Months[4]  = "May";
Months[5]  = "June";
Months[6]  = "July";
Months[7]  = "August";
Months[8]  = "September";
Months[9]  = "October";
Months[10] = "November";
Months[11] = "December";

var TheYear = RawDate.getYear();

if(navigator.appName == "Netscape")
  { TheYear = TheYear + 1900; }


function footer()
  {
    document.write('  <TR><TD ALIGN="left" WIDTH="50%" CLASS="links" STYLE="padding-left: 10; padding-top: 4">');
    document.write('    &copy; 2004-2006 <A HREF="mailto:dinahmitedesign@yahoo.com">Dinahmite Design</A>');
    document.write('  </TD><TD ALIGN="right" WIDTH="50%" CLASS="links" STYLE="padding-right: 10; padding-top: 4">');
    document.write('    ' + Months[RawDate.getMonth()] + ' ' + RawDate.getDate() + ', ' + TheYear);
    document.write('  </TD></TR>');
  }

