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

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

if (monat==0) document.write("January");
if (monat==1) document.write("February");
if (monat==2) document.write("March");
if (monat==3) document.write("April");
if (monat==4) document.write("May");
if (monat==5) document.write("June");
if (monat==6) document.write("July");
if (monat==7) document.write("August");
if (monat==8) document.write("September");
if (monat==9) document.write("October");
if (monat==10) document.write("November")
if (monat==11) document.write("December")
}

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

if (wochentag==0) document.write("Sunday");
if (wochentag==1) document.write("Monday");
if (wochentag==2) document.write("Tuesday");
if (wochentag==3) document.write("Wednesday");
if (wochentag==4) document.write("Thursday");
if (wochentag==5) document.write("Friday");
if (wochentag==6) document.write("Saturday");

}
