// JavaScript Document
function todaysDate(){
	var mydate= new Date();
	var theyear=mydate.getFullYear();
	var themonth=mydate.getMonth()+1;
	var thetoday=mydate.getDate();
	var monthName;
	
	if (themonth==1) monthName=("January");
	else if (themonth==2) monthName=("February");
	else if (themonth==3) monthName=("March");
	else if (themonth==4) monthName=("April");
	else if (themonth==5) monthName=("May");
	else if (themonth==6) monthName=("June");
	else if (themonth==7) monthName=("July");
	else if (themonth==8) monthName=("August");
	else if (themonth==9) monthName=("September");
	else if (themonth==10) monthName=("October");
	else if (themonth==11) monthName=("November");
	else monthName=("December");
	

	document.write(monthName+" "+thetoday+", "+theyear);
}