

//get current year
function copyright(){
   var jetzt = new Date();
   document.write(jetzt.getFullYear());
   }

