
function displayDate()
{
  var newday = new Date();
  var the_day = newday.getDate();
  var this_day = newday.getDay()+1;
  var the_month = newday.getMonth()+1;
  var the_year = newday.getYear();
//  if (this_day == 1){window.document.my_form.sunday.checked = true};
//  if (this_day == 2){window.document.my_form.monday.checked = true};
//  if (this_day == 3){window.document.my_form.tuesday.checked = true};
//  if (this_day == 4){window.document.my_form.wednesday.checked = true};
//  if (this_day == 5){window.document.my_form.thursday.checked = true}; 
//  if (this_day == 6){window.document.my_form.friday.checked = true};
//  if (this_day == 7){window.document.my_form.saturday.checked = true};
  if (the_month == 1){my_month = "January"};
  if (the_month == 2){my_month = "February"};
  if (the_month == 3){my_month = "March"};
  if (the_month == 4){my_month = "April"};
  if (the_month == 5){my_month = "May"};
  if (the_month == 6){my_month = "June"};
  if (the_month == 7){my_month = "July"};
  if (the_month == 8){my_month = "August"};
  if (the_month == 9){my_month = "September"};
  if (the_month == 10){my_month = "October"};
  if (the_month == 11){my_month = "November"};
  if (the_month == 12){my_month = "December"};
  if (the_year <= 1000){the_year = the_year + 1900};
  if (the_day <= 31){the_day = " " + the_day};
  document.write( my_month + ' '  + the_day + ', ' + the_year );
}