  var xwtoday;
  now = new Date() 
  if (now.getDay() == 5) xwtoday="Friday"
  if (now.getDay() == 6) xwtoday="Saturday"
  if (now.getDay() == 0) xwtoday="Sunday"
  if (now.getDay() == 1) xwtoday="Monday"
  if (now.getDay() == 2) xwtoday="Tuesday"
  if (now.getDay() == 3) xwtoday="Wednesday"
  if (now.getDay() == 4) xwtoday="Thursday"

  var awenmonth;
  if (now.getMonth() == 0) awenmonth="January"
  if (now.getMonth() == 1) awenmonth="February"
  if (now.getMonth() == 2) awenmonth="March"
  if (now.getMonth() == 3) awenmonth="April"
  if (now.getMonth() == 4) awenmonth="May"
  if (now.getMonth() == 5) awenmonth="June"
  if (now.getMonth() == 6) awenmonth="July"
  if (now.getMonth() == 7) awenmonth="August"
  if (now.getMonth() == 8) awenmonth="September"
  if (now.getMonth() == 9) awenmonth="October"
  if (now.getMonth() == 10) awenmonth="November"
  if (now.getMonth() == 11) awenmonth="December"

  var awendate;
  awendate=now.getDate();
  if (now.getDate() < 10) awendate="0"+now.getDate();
 
  document.write("Today:&nbsp;");
  document.write(xwtoday+", ");
  document.write(awenmonth+" "+awendate+", " + now.getYear());
