var datum = new Date()
var jahr = datum.getFullYear()

var tag = datum.getDate()

function monat1(){
var monat = datum.getMonth()

if (monat==0) document.write("enero");
if (monat==1) document.write("febrero");
if (monat==2) document.write("marzo");
if (monat==3) document.write("abril");
if (monat==4) document.write("mayo");
if (monat==5) document.write("junio");
if (monat==6) document.write("julio");
if (monat==7) document.write("agosto");
if (monat==8) document.write("septiembre");
if (monat==9) document.write("octubre");
if (monat==10) document.write("noviembre")
if (monat==11) document.write("diciembre")
}

function wotag(){
var datum = new Date()
var wochentag = datum.getDay()

if (wochentag==0) document.write("Domingo");
if (wochentag==1) document.write("Lunes");
if (wochentag==2) document.write("Martes");
if (wochentag==3) document.write("Miércoles");
if (wochentag==4) document.write("Jueves");
if (wochentag==5) document.write("Viernes");
if (wochentag==6) document.write("Sábado");
}

wotag()
document.write(", ")

document.write(tag," de ")
monat1()
document.write(" de ", jahr)