	var friendlyday = " "
	var friendlymonth = " "
	var friendlyyear = " "

	today = new Date()
	thisdayofweek = today.getDay()
	thisdayofmonth = today.getDate()
	thismonth = today.getMonth()
	thisyear = today.getYear()

if (thisdayofweek == 0) friendlyday = "Sunday"
if (thisdayofweek == 1) friendlyday = "Monday"
if (thisdayofweek == 2) friendlyday = "Tuesday"
if (thisdayofweek == 3) friendlyday = "Wednesday"
if (thisdayofweek == 4) friendlyday = "Thursday"
if (thisdayofweek == 5) friendlyday = "Friday"
if (thisdayofweek == 6) friendlyday = "Saturday"

if (thismonth == 0) friendlymonth = "January"
if (thismonth == 1) friendlymonth = "February"
if (thismonth == 2) friendlymonth = "March"
if (thismonth == 3) friendlymonth = "April"
if (thismonth == 4) friendlymonth = "May"
if (thismonth == 5) friendlymonth = "June"
if (thismonth == 6) friendlymonth = "July"
if (thismonth == 7) friendlymonth = "August"
if (thismonth == 8) friendlymonth = "September"
if (thismonth == 9) friendlymonth = "October"
if (thismonth == 10) friendlymonth = "November"
if (thismonth == 11) friendlymonth = "December"

if (thisyear == 99) friendlyyear = "1999"
if (thisyear == 2000) friendlyyear = "2000"
if (thisyear == 100) friendlyyear = "2000"
if (thisyear == 00) friendlyyear = "2000"
if (thisyear == 2001) friendlyyear = "2001"
if (thisyear == 101) friendlyyear = "2001"
if (thisyear == 01) friendlyyear = "2001"
if (thisyear == 2002) friendlyyear = "2002"
if (thisyear == 102) friendlyyear = "2002"
if (thisyear == 02) friendlyyear = "2002"
if (thisyear == 2003) friendlyyear = "2003"
if (thisyear == 103) friendlyyear = "2003"
if (thisyear == 03) friendlyyear = "2003"
if (thisyear == 2004) friendlyyear = "2004"
if (thisyear == 104) friendlyyear = "2004"
if (thisyear == 04) friendlyyear = "2004"
if (thisyear == 2005) friendlyyear = "2005"
if (thisyear == 105) friendlyyear = "2005"
if (thisyear == 05) friendlyyear = "2005"
if (thisyear == 2006) friendlyyear = "2006"
if (thisyear == 106) friendlyyear = "2006"
if (thisyear == 06) friendlyyear = "2006"
if (thisyear == 2007) friendlyyear = "2007"
if (thisyear == 107) friendlyyear = "2007"
if (thisyear == 07) friendlyyear = "2007"
if (thisyear == 2008) friendlyyear = "2008"
if (thisyear == 108) friendlyyear = "2008"
if (thisyear == 08) friendlyyear = "2008"
if (thisyear == 2009) friendlyyear = "2009"
if (thisyear == 109) friendlyyear = "2009"
if (thisyear == 09) friendlyyear = "2009"


	document.write ("&nbsp;&nbsp;" + friendlyday + "," + " " + thisdayofmonth + " " + friendlymonth + " " + friendlyyear)