<!-- JavaScript Follows
		//
		var wetpaint3 = new Date();
		var date = wetpaint3.getDate();
		var year = wetpaint3.getFullYear();
		var month = wetpaint3.getMonth();
			(month == 0) ? month = 'Jan.' :
			(month == 1) ? month = 'Feb.' :
			(month == 2) ? month = 'Mar.' :
			(month == 3) ? month = 'Apr.' :
			(month == 4) ? month = 'May' :
			(month == 5) ? month = 'Jun.' :
			(month == 6) ? month = 'Jul.' :
			(month == 7) ? month = 'Aug.' :
			(month == 8) ? month = 'Sep.' :
			(month == 9) ? month = 'Oct.' :
			(month == 10)? month = 'Nov.' :
			month = 'Dec.';

		var displayDate = " "  +  month + " "  + date + ", " + year

		document.write ('<FONT FACE="Verdana" SIZE="1" COLOR=#666666>');
		document.write (displayDate);
		document.write ('</FONT>');
		
		/* Jeff Scott 8-99 */