// ****************************************
// *** Function to display current date ***
// *** in Month Day, Year format        ***
// ****************************************
function showYear() {
var theDate = new Date(); // instantiate
var theYear = theDate.getFullYear(); // assign the year

// display output
document.write(theYear);

}