<!-- Verstecken für ältere Browser
function herrscher() {
var now = new Date()
var datum = now.getDay()
var month = now.getMonth()

var hello=""

if (month == 0 && datum >=20 || month == 1 && datum <=18){
hello="<font color=#550099><b>Aquarius</b></font>"
}
else if (month == 1 && datum >=19 || month == 2 && datum <=20){
hello="<font color=#550099><b>Pisces</b></font>"
}
else if (month == 2 && datum >=21 || month == 3 && datum <=19){
hello="<font color=#550099><b>Aries</b></font>"
}
else if (month == 3 && datum >=20 || month == 4 && datum <=20){
hello="<font color=#550099><b>Gemini</b></font>"
}
else if (month == 4 && datum >=21 || month == 5 && datum <=21){
hello="<font color=#550099><b>Gemini</b></font>"
}
else if (month == 5 && datum >=22 || month == 6 && datum <=22){
hello="<font color=#550099><b>Cancer</b></font>"
}
else if (month == 6 && datum >=23 || month == 7 && datum <=22){
hello="<font color=#550099><b>Leo</b></font>"
}
else if (month == 7 && datum >=23 || month == 8 && datum <=22){
hello="<font color=#550099><b>Virgo</b></font>"
}
else if (month == 8 && datum >=23 || month == 9 && datum <=22){
hello="<font color=#550099><b>Scorpio</b></font>"
}
else if (month == 9 && datum >=23 || month == 10 && datum <=21){
hello="<font color=#550099><b>Scorpio</b></font>"
}
else if (month == 10 && datum >=22 || month == 11 && datum <=21){
hello="<font color=#550099><b>Sagittarius</b></font>"
}
else if (month == 11 && datum >=22 || month == 0 && datum <=19){
hello="<font color=#550099><b>Aquarius</b></font>"
}
document.write(hello)
}
//-->
