function showYear() {  //gets the actual year now
 var datum=new Date();
 jahr=datum.getFullYear();
 document.write(jahr);
}
