var monthNames = new Array( "1","2","3","4","5","6","7","8","9","10","11","12");
var now = new Date();
thisYear = now.getYear();
if(thisYear < 1900) {thisYear += 1900}; // corrections if Y2K display problem
document.write(now.getDate() + ". " + monthNames[now.getMonth()] + " " + thisYear);
