<!--BEGIN
// Javascript erstellt von Angelika Hippe - webmaster@oana.de - im August 2000
var zahl=0
function calculate(form)
 {
zahl=((document.form.tag.value)+(document.form.monat.value)+(document.form.jahr.value))%9;
if((document.form.tag.value=="")||(document.form.monat.value=="")||(document.form.jahr.value=="")) alert("Bitte vollständig ausfüllen - sonst: falsche Berechnung!!");
if (zahl == 0) {document.form.result.value=("         9          ");} 
if (isNaN(zahl)|| zahl<0) {document.form.result.value=("Nur Zahlen!");}
if (zahl == 1) {document.form.result.value=("         1          ");}
if (zahl == 2) {document.form.result.value=("         2          ");}
if (zahl == 3) {document.form.result.value=("         3          ");}
if (zahl == 4) {document.form.result.value=("         4          ");}
if (zahl == 5) {document.form.result.value=("         5          ");}
if (zahl == 6) {document.form.result.value=("         6          ");}
if (zahl == 7) {document.form.result.value=("         7          ");}
if (zahl == 8) {document.form.result.value=("         8          ");}
if (zahl == 9) {document.form.result.value=("         9          ");}

}
function weit(){
leit=(document.form.result.value)
if (leit==1){top.location.href=("eins.htm");}
if (leit==2){top.location.href=("zwei.htm");}
if (leit==3){top.location.href=("drei.htm");}
if (leit==4){top.location.href=("vier.htm");}
if (leit==5){top.location.href=("fuenf.htm");}
if (leit==6){top.location.href=("sechs.htm");}
if (leit==7){top.location.href=("sieben.htm");}
if (leit==8){top.location.href=("acht.htm");}
if (leit==9){top.location.href=("neun.htm");}
}

// End -->