
<!--
now = new Date();
Ret = now.toLocaleString();
Day = now.getDate();
Month = now.getMonth();
Year = now.getYear();

if (Month == 0) {
   Month = "January";
   } else if (Month == 1) {
   Month = "February";
 } else if (Month == 2) {
   Month = "March";
 } else if (Month == 3) {
   Month = "April";
 } else if (Month == 4) {
   Month = "May";
 } else if (Month == 5) {
   Month = "June";
 } else if (Month == 6) {
   Month = "July";
 } else if (Month == 7) {
   Month = "August";
 } else if (Month == 8) {
   Month = "September";
 } else if (Month == 9) {
   Month = "October";
 } else if (Month == 10) {
   Month = "November";
 } else if (Month == 11) {
   Month = "December";
 }

document.write(Month + " " + Day + ", "  + "2005");

// -->

