datum = new Date();
with (datum){
d = getDate();
m = getMonth() + 1;
r = getFullYear()
}
document.write(d+"."+m+"."+r);