// JavaScript Document

function displayDate() {
// In DD MMMM YYYY format
	var theDate = new Date();
	datenow = theDate.getDate();
	monthnow = theDate.getMonth();
	if (monthnow == 0)
		month = "January";
	else if (monthnow == 1)
		month = "February";
	else if (monthnow == 2)
		month = "March";
	else if (monthnow == 3)
		month = "April";
	else if (monthnow == 4)
		month = "May";
	else if (monthnow == 5)
		month = "June";
	else if (monthnow == 6)
		month = "July";
	else if (monthnow == 7)
		month = "August";
	else if (monthnow == 8)
		month = "September";
	else if (monthnow == 9)
		month = "October";
	else if (monthnow == 10)
		month = "November";
	else if (monthnow == 11)
		month = "December";
	yearnow = theDate.getFullYear();
	document.write(datenow+" "+month+" "+yearnow);
}