
document.write('<span class="textDate">');
			var now = new Date();
			var nowday = now.getDay();
			var thisday;
			if(nowday == 0)thisday="Sunday";
			if(nowday == 1)thisday="Monday";
			if(nowday == 2)thisday="Tuesday";
			if(nowday == 3)thisday="Wednesday";
			if(nowday == 4)thisday="Thursday";
			if(nowday == 5)thisday="Friday";
			if(nowday == 6)thisday="Saturday";
			var thisdate = now.getDate();
			if (thisdate == "1" || thisdate == "21" || thisdate == "31"){
			thisdate = thisdate + "st";
			} else if (thisdate == "2" || thisdate == "22"){
			thisdate = thisdate + "nd";
			} else if (thisdate == "3" || thisdate == "23"){
			thisdate = thisdate + "rd";
			} else if (thisdate > "3" && thisdate < "21"){
			thisdate = thisdate + "th";
			} else if (thisdate > "23" && thisdate < "31"){
			thisdate = thisdate + "th";
			}
			var nowmonth = now.getMonth();
			var thismonth;
			if(nowmonth == 0)thismonth="January";
			if(nowmonth == 1)thismonth="February";
			if(nowmonth == 2)thismonth="March";
			if(nowmonth == 3)thismonth="April";
			if(nowmonth == 4)thismonth="May";
			if(nowmonth == 5)thismonth="June";
			if(nowmonth == 6)thismonth="July";
			if(nowmonth == 7)thismonth="August";
			if(nowmonth == 8)thismonth="September";
			if(nowmonth == 9)thismonth="October";
			if(nowmonth == 10)thismonth="November";
			if(nowmonth == 11)thismonth="December";
			var thisyear = now.getFullYear();

			document.write(thisday + ", " + thisdate + " " + thismonth + " " + thisyear + "</span><br clear=\"all\">");
