
var monthOut = new String;
var currentTime = new Date()
var month = currentTime.getMonth()
var day = currentTime.getDate()
var year = currentTime.getFullYear()
if(month==0){
	monthOut="January";
}else if(month==1){
	monthOut="February";
}else if(month==2){
	monthOut="March";
}else if(month==3){
	monthOut="April";
}else if(month==4){
	monthOut="May";
}else if(month==5){
	monthOut="June";
}else if(month==6){
	monthOut="July";
}else if(month==7){
	monthOut="August";
}else if(month==8){
	monthOut="September";
}else if(month==9){
	monthOut="October";
}else if(month==10){
	monthOut="November";
}else if(month==11){
	monthOut="December";
}
document.write(monthOut + " " + day + ", " + year)
