<!--
// Javascript erstellt von Angelika Hippe - webmaster@oana.de - im August 2000
var zahll=0
function addiere()
{
zahll=((document.bform.carac.value)+(document.bform.tagz.value)+(document.bform.mon.value)+(document.bform.jahrr.value))%9;
if (isNaN(zahll) || zahll<0) {document.bform.result.value=("Nur Zahlen!");}
if((document.bform.carac.value=="")||(document.bform.tagz.value=="")||(document.bform.mon.value=="")||(document.bform.jahrr.value=="")) {alert("Bitte vollständig ausfüllen - sonst: falsche Berechnung!");}
if (zahll == 0) {document.bform.result.value=("          9          ");}
if (zahll == 1) {document.bform.result.value=("          1          ");}
if (zahll == 2) {document.bform.result.value=("          2          ");}
if (zahll == 3) {document.bform.result.value=("          3          ");}
if (zahll == 4) {document.bform.result.value=("          4          ");}
if (zahll == 5) {document.bform.result.value=("          5          ");}
if (zahll == 6) {document.bform.result.value=("          6          ");}
if (zahll == 7) {document.bform.result.value=("          7          ");}
if (zahll == 8) {document.bform.result.value=("          8          ");}
if (zahll == 9) {document.bform.result.value=("          9          ");}
}

function weiter(){
leit=(document.bform.result.value)
if (leit==1){top.location.href=("eins.htm#Eins");}
if (leit==2){top.location.href=("zwei.htm#Zwei");}
if (leit==3){top.location.href=("drei.htm#Drei");}
if (leit==4){top.location.href=("vier.htm#Vier");}
if (leit==5){top.location.href=("fuenf.htm#Fuenf");}
if (leit==6){top.location.href=("sechs.htm#Sechs");}
if (leit==7){top.location.href=("sieben.htm#Sieben");}
if (leit==8){top.location.href=("acht.htm#Acht");}
if (leit==9){top.location.href=("neun.htm#Neun");}
}
// -->