// This version of a date generator was written by Mike Rhoades for chucknut.com © 2001

				var now = new Date();
				var month = now.getMonth();
				
				if(month == 0) nmonth = "jan";
				if(month == 1) nmonth = "feb";
				if(month == 2) nmonth = "mar";
				if(month == 3) nmonth = "apr";
				if(month == 4) nmonth = "may";
				if(month == 5) nmonth = "jun";
				if(month == 6) nmonth = "jul";
				if(month == 7) nmonth = "aug";
				if(month == 8) nmonth = "sep";
				if(month == 9) nmonth = "oct";
				if(month == 10) nmonth = "nov";
				if(month == 11) nmonth = "dec";

				var date = now.getDate();
				var day = now.getDay();

				if(day == 0) nday = "sun";
				if(day == 1) nday = "mon";
				if(day == 2) nday = "tue";
				if(day == 3) nday = "wed";
				if(day == 4) nday = "thu";
				if(day == 5) nday = "fri";
				if(day == 6) nday = "sat";

				var year = now.getFullYear();

function chuckdate() {
				
				document.write("<font face='Arial,Helvetica,sans-serif' size='1' color='#666666'> &nbsp;" + nday + "&nbsp;.&nbsp;" + nmonth + "&nbsp;.&nbsp;" + date + "&nbsp;.&nbsp;" + year + "</font>");
				}