 
var today = new Date();
var the_day = today.getDate();
var the_month = today.getMonth();

if (the_month == "0") {
	the_month = "January";
	}
	
else if (the_month == "1") {
	the_month = "February";
	}
	
else if (the_month == "2") {
	the_month = "March";
	}
	
else if (the_month == "3") {
	the_month = "April";
	}
	
else if (the_month == "4") {
	the_month = "May";
	}
else if (the_month == "5") {
	the_month = "June";
	}
	
	else if (the_month == "6") {
	the_month = "July";
	}
	
	else if (the_month == "7") {
	the_month = "August";
	}
	
	else if (the_month == "8") {
	the_month = "September";
	}
	
	else if (the_month == "9") {
	the_month = "October";
	}
	
	else if (the_month == "10") {
	the_month = "November";
	}
	
	else if (the_month == "11") {
	the_month = "December";
	}

function y2k(number) {
	return (number < 1000) ? number + 1900 : number;
	}
	
var year = y2k(today.getYear());

var whole_date = the_month + " " + the_day + ", " + year;

