
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 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 thisdate = now.getDate();
			var thisyear = now.getFullYear();
			
			document.write(thisday + ", " + thismonth + " " + thisdate + " " + thisyear + "</span><br clear=\"all\">");