var heute = new Date();
var monat = heute.getMonth()+1;
var tag = heute.getDate();

document.write(" "+tag+"."+monat+".2012");
