var months = new Array ("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");

var lmod = new Date(document.lastModified);
var MO = lmod.getMonth(document.lastModified); 
var D = lmod.getDate(document.lastModified); 
var Y = lmod.getFullYear(document.lastModified); 

var T = D+" "+months[MO]+" "+Y
document.writeln("Actualización: "+T);