// This version of a date generator was written by Mike Rhoades for Promoworks.net © 2001

				var now = new Date();
				var month = now.getMonth();
				
				if(month == 0) nmonth = "January";
				if(month == 1) nmonth = "February";
				if(month == 2) nmonth = "March";
				if(month == 3) nmonth = "April";
				if(month == 4) nmonth = "May";
				if(month == 5) nmonth = "June";
				if(month == 6) nmonth = "July";
				if(month == 7) nmonth = "August";
				if(month == 8) nmonth = "September";
				if(month == 9) nmonth = "October";
				if(month == 10) nmonth = "November";
				if(month == 11) nmonth = "December";

				var date = now.getDate();
				var day = now.getDay();

				if(day == 0) nday = "Sunday";
				if(day == 1) nday = "Monday";
				if(day == 2) nday = "Tuesday";
				if(day == 3) nday = "Wednesday";
				if(day == 4) nday = "Thursday";
				if(day == 5) nday = "Friday";
				if(day == 6) nday = "Saturday";

				var year = now.getFullYear();

function promodate() {
				
				document.write("<font face='Arial,Helvetica,sans-serif' size='1' color='#666666'> &nbsp;" + nday + ",<br>" + " &nbsp;" + nmonth + " " + date + ", " + year + "</font>");
				}

function promocopyright() {
				document.write("&nbsp; &copy; &nbsp;" + year + "&nbsp;Promoworks&nbsp;");
				}