
						currentDate=new Date();

						currentMonth=currentDate.getMonth();

						if (currentMonth==0) {currentMonthName = 'January';}

						if (currentMonth==1) {currentMonthName = 'Febuary';}

						if (currentMonth==2) {currentMonthName = 'March';}

						if (currentMonth==3) {currentMonthName = 'April';}

						if (currentMonth==4) {currentMonthName = 'May';}

						if (currentMonth==5) {currentMonthName = 'June';}

						if (currentMonth==6) {currentMonthName = 'July';}

						if (currentMonth==7) {currentMonthName = 'August';}

						if (currentMonth==8) {currentMonthName = 'September';}

						if (currentMonth==9) {currentMonthName = 'October';}

						if (currentMonth==10) {currentMonthName = 'November';}

						if (currentMonth==11) {currentMonthName = 'December';}

						document.write(currentMonthName + " " + currentDate.getDate() + ", " + currentDate.getFullYear());

						