<!--hiding
var months=new Array(12);
months[0]="Ianuarie";
months[1]="Februarie";
months[2]="Martie";
months[3]="Aprilie";
months[4]="Mai";
months[5]="Iunie";
months[6]="Iulie";
months[7]="August";
months[8]="Septembrie";
months[9]="Octombrie";
months[10]="Noiembrie";
months[11]="Decembrie";
var d=new Date();
document.write(d.getDate());
document.write(" ");
document.write(months[d.getMonth()]);
document.write(" ");
document.write(d.getFullYear());
<!--end hiding-->