<!-- Begin
function monat(){
var mond= new Date()
var monat=mond.getMonth()
var hello=""

if (monat==0){
hello="January"
} 
else if (monat==1){
hello="February"
} 
else if (monat==2){
hello="March"
} 
else if (monat==3){
hello="April"
} 
else if (monat==4){
hello="May"
} 
else if (monat==5){
hello="June"
} 
else if (monat==6){
hello="July"
} 
else if (monat==7){
hello="August"
} 
else if (monat==8){
hello="September"
} 
else if (monat==9){
hello="October"
} 
else if (monat==10){
hello="November"
}
else if (monat==11){
hello="December"
} 
document.write(hello)
}
// End-->