document.writeln("<Script language=JavaScript>");
document.writeln(" var nombres = new Array(7);");
document.writeln(" var d, s = '';");
document.writeln(" nombres[0]  = 'January';");
document.writeln(" nombres[1]  = 'February';");
document.writeln(" nombres[2]  = 'March';");
document.writeln(" nombres[3]  = 'April';");
document.writeln(" nombres[4]  = 'May';");
document.writeln(" nombres[5]  = 'June';");
document.writeln(" nombres[6]  = 'July';");
document.writeln(" nombres[7]  = 'August';");
document.writeln(" nombres[8]  = 'September';");
document.writeln(" nombres[9]  = 'October';");
document.writeln(" nombres[10] = 'November';");
document.writeln(" nombres[11] = 'December';");
document.writeln(" d = new Date();");
document.writeln(" s += d.getDate() + ' ';");
document.writeln(" s += (nombres[d.getMonth()]) + ' ';");
document.writeln(" s += d.getFullYear();");
document.writeln(" document.write(s);");
document.writeln("</Script>");