<!--
mes = new Array("01","02","03","04","05","06","07","08","09","10","11","12");
fecha = new Date();
d = fecha.getDate();
m = fecha.getMonth();
y=fecha.getFullYear();
if(y<2010){
total=y-2000;
b="0"+total;
}else{
total=y-2000;
b=total;
}

document.write(d+"."+mes[m]+"."+b);
//-->