Stamp = new Date();var the_month = Stamp.getMonth();  if (the_month == 0){my_month = "January"};  if (the_month == 1){my_month = "February"};  if (the_month == 2){my_month = "March"};  if (the_month == 3){my_month = "April"};  if (the_month == 4){my_month = "May"};  if (the_month == 5){my_month = "June"};  if (the_month == 6){my_month = "July"};  if (the_month == 7){my_month = "August"};  if (the_month == 8){my_month = "September"};  if (the_month == 9){my_month = "October"};  if (the_month == 10){my_month = "November"};  if (the_month == 11){my_month = "December"};var the_day = Stamp.getDay();  if (the_day == 1){my_day = "Monday"};  if (the_day == 2){my_day = "Tuesday"};  if (the_day == 3){my_day = "Wednesday"};  if (the_day == 4){my_day = "Thursday"};  if (the_day == 5){my_day = "Friday"};  if (the_day == 6){my_day = "Saturday"};  if (the_day == 0){my_day = "Sunday"};document.write("<font face=arial size=1>" + my_day + ", " + Stamp.getDate() + " " + my_month + ", " +Stamp.getYear() + "</font>");//document.write("the_day " +the_day);