function WebYear() {
   var date = new Date();
   var year = date.getFullYear();
   document.write(year);
}

