// to write in the day and date on the page.
var now = new Date();
var theYear  = now.getFullYear();
function writeYear() { document.write(theYear); }

