<!-- Date Stamping 
		today = new Date();
		month = today.getMonth();
		date = today.getDate();
		year=today.getYear();
		
		araw = today.getDay();
		
		if (araw == 0) document.write('Sun., ');
		if (araw == 1) document.write('Mon., ');
		if (araw == 2) document.write('Tue., ');
		if (araw == 3) document.write('Wed., ');
		if (araw == 4) document.write('Thu., ');
		if (araw == 5) document.write('Fri., ');
		if (araw == 6) document.write('Sat., ');
		
		if (year < 2000) {
		    year = year + 1900
		}
		if (month == 0) document.write('Jan.');
		if (month == 1) document.write('Feb.');
		if (month == 2) document.write('Mar.');
		if (month == 3) document.write('Apr.');
		if (month == 4) document.write('May');
		if (month == 5) document.write('June');
		if (month == 6) document.write('July');
		if (month == 7) document.write('Aug.');
		if (month == 8) document.write('Sep.');
		if (month == 9) document.write('Oct.');
		if (month == 10) document.write('Nov.');
		if (month == 11) document.write('Dec.');
				
		document.write ('&nbsp;',date, ',&nbsp;', year);
		// -->


