<!-- Verstecken für ältere Browser
function herrscher() {
var now = new Date()
var month = now.getMonth()
var datum = now.getDay()
var hello=""

if (datum >= 20 && month == 0 || datum <= 18 && month == 1){
hello="<font color=#550099><b>Wassermann</b></font>"
}
if (datum >= 19 && month == 1 || datum <= 20 && month == 2){
hello="<font color=#550099><b>Fische</b></font>"
}
if (datum >= 21 && month == 2 || datum <= 19 && month == 3){
hello="<font color=#550099><b>Widder</b></font>"
}
if (datum >= 20 && month == 3 || datum <= 20 && month == 4){
hello="<font color=#550099><b>Stier</b></font>"
}
if (datum >= 21 && month == 4 || datum <= 21 && month == 5){
hello="<font color=#550099><b>Zwillinge</b></font>"
}
if (datum >= 22 && month == 5 || datum <= 22 && month == 6){
hello="<font color=#550099><b>Löwe</b></font>"
}
if (datum >= 23 && month == 6 || datum <= 22 && month == 7){
hello="<font color=#550099><b>Löwe</b></font>"
}
if (datum >= 23 && month == 7 || datum <= 22 && month == 8){
hello="<font color=#550099><b>Jungfrau</b></font>"
}
if (datum >= 23 && month == 8 || datum <= 22 && month == 9){
hello="<font color=#550099><b>Waage</b></font>"
}
if (datum >= 23 && month == 9 || datum <= 21 && month == 10){
hello="<font color=#550099><b>Skorpion</b></font>"
}
if (datum >= 22 && month == 10 || datum <= 21 && month == 11){
hello="<font color=#550099><b>Schütze</b></font>"
}
if (datum >= 22 && month == 11 || datum <= 19 && month == 0){
hello="<font color=#550099><b>Wassermann</b></font>"
}

document.write(hello)
}
//-->
