
document.write('<span class="userdate">');
			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="Jan";
			if(nowmonth == 1)thismonth="Feb";
			if(nowmonth == 2)thismonth="Mar";
			if(nowmonth == 3)thismonth="Apr";
			if(nowmonth == 4)thismonth="May";
			if(nowmonth == 5)thismonth="Jun";
			if(nowmonth == 6)thismonth="Jul";
			if(nowmonth == 7)thismonth="Aug";
			if(nowmonth == 8)thismonth="Sept";
			if(nowmonth == 9)thismonth="Oct";
			if(nowmonth == 10)thismonth="Nov";
			if(nowmonth == 11)thismonth="Dec";
			var thisdate = now.getDate();
			var thisyear = now.getYear();
			document.write(thisday + "&nbsp;" + thismonth + "&nbsp;" + thisdate + "</span>");