// JavaScript Documentfunction getYear() {var dteNow = new Date();var intYear = dteNow.getFullYear();document.write(intYear);}
