// Captures current year for footer copyright
function displayDate() {
 var now = new Date();
 var year = now.getFullYear();

 document.write(year);
}
