<!-- Verstecken für ältere Browser
function chinamonth(){
var now= new Date()
var mon=now.getMonth()
var hello=""

if (mon==0){
hello="<font color=#00FFFF><b>OX</b></font>"
} 
else if (mon==1){
hello="<font color=#00FFFF><b>Tiger</b></font>"
} 
else if (mon==2){
hello="<font color=#00FFFF><b>Rabbit</b></font>"
} 
else if (mon==3){
hello="<font color=#00FFFF><b>Dragon</b></font>"
} 
else if (mon==4){
hello="<font color=#00FFFF><b>Snake</b></font>"
} 
else if (mon==5){
hello="<font color=#00FFFF><b>Horse</b></font>"
} 
else if (mon==6){
hello="<font color=#00FFFF><b>Sheep / Goat</b></font>"
} 
else if (mon==7){
hello="<font color=#00FFFF><b>Monkey</b></font>"
} 
else if (mon==8){
hello="<font color=#00FFFF><b>Rooster</b></font>"
} 
else if (mon==9){
hello="<font color=#00FFFF><b>Dog</b></font>"
} 
else if (mon==10){
hello="<font color=#00FFFF><b>Pig</b></font>"
}
else if (mon==11){
hello="<font color=#00FFFF><b>Rat</b></font>"
} 
document.write(hello)
}
//-->
