<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>Untitled 1</title>
</head>
<body>
<script>
var txtor = document.lastModified,
re1 = txtor.replace( "/" , ","),
re2=re1.replace( "/" , ","),
re3=re2.replace(" ", ","),
re4=re3.replace(":" , ","),
re5=re4.replace(":",",");
lista=re5.split(",");
function fmes(){
if (lista[0]=="01"){
document.write("Enero");
}
else if (lista[0]=="02"){
document.write("Febrero");
}
else if (lista[0]=="03"){
document.write("Marzo");
}
else if (lista[0]=="04"){
document.write("Abril");
}
else if (lista[0]=="05"){
document.write("Mayo");
}
else if (lista[0]=="06"){
document.write("Junio");
}
else if (lista[0]=="07"){
document.write("Julio");
}
else if (lista[0]=="08"){
document.write("Agosto");
}
else if (lista[0]=="09"){
document.write("Septiembre");
}
else if (lista[0]=="10"){
document.write("Octubre");
}
else if (lista[0]=="11"){
document.write("Nobiembre");
}
else if (lista[0]=="12"){
document.write("Diciembre");
}
}
document.write("Fecha de edicion: ", lista[1] , " de ") ; fmes() ; ;document.write(" del " , lista[2]) ;
</script>
</body>
</html>