var now = new Date();
var months = new Array("Jan.", "Feb.", "Mar.", "Apr.", "Mai", "Jun.", "Jul.", "Aug.", "Sep.", "Okt.", "Nov.", "Dez.");
var year = now.getYear();
if(year < 999) year+=1900;
document.write(now.getDate() + " " + months[now.getMonth()] + " " + year);
