					var theDate = new Date();
					var theMonth=new Array(12)
					theMonth[0]="January"
					theMonth[1]="February"
					theMonth[2]="March"
					theMonth[3]="April"
					theMonth[4]="May"
					theMonth[5]="June"
					theMonth[6]="July"
					theMonth[7]="August"
					theMonth[8]="September"
					theMonth[9]="October"
					theMonth[10]="November"
					theMonth[11]="December"
					document.write(theDate.getDate() + " " + theMonth[theDate.getMonth()] + ", " + theDate.getFullYear());
