var monthNames = new Array("JANUAR","FEBRUAR","MÄRZ","APRIL","MAI","JUNI","JULI","AUGUST","SEPTEMBER","OKTOBER","NOVEMBER","DEZEMBER");
var now = new Date();
document.write(now.getDate() + " " + monthNames[now.getMonth()] + " " + now.getFullYear());