function ShowNowYear() {
   var now = new Date();
   var Year = now.getFullYear().toString();
   document.write(Year);
}

