
var months=new Array(14);
months[1]=".01.";
months[2]=".02.";
months[3]=".03.";
months[4]=".04.";
months[5]=".05.";
months[6]=".06.";
months[7]=".07.";
months[8]=".08.";
months[9]=".09.";
months[10]=".10.";
months[11]=".11.";
months[12]=".12.";
var time=new Date();
var month=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)
year = year + 1900;
document.write( date + month + year + " " );


