var rechnerhinweis=0;

function fenster(){
  //infofenster = window.open("index.php?id=299", "secondwin", "locationbar=no,status=no,menubar=no,resizable=no,scrollbars=yes,width=250,height=220,top=400");
  //window.infofenster.focus();
  rechnerhinweis=1;
}

function checkzahl(kzahl){
  if (kzahl.indexOf(",") > 0){
    n = kzahl.indexOf(",")
    neuzahl =kzahl.substring(0,n) + "."+ kzahl.substring(n+1,kzahl.length);
    neuzahl=parseFloat(neuzahl);
  }
  else {
    neuzahl=parseFloat(kzahl)
  }
  return neuzahl;
}

function berechne(){
  s= parseInt(document.forms[0].summe.value);
  a=parseInt(document.forms[0].aufwand.value);
  z= checkzahl(document.forms[0].zins.value);
  t= checkzahl(document.forms[0].tilgung.value);
  s=(12*a/(z+t))*100;
  document.forms[0].summe.value = parseInt(s)
  if (rechnerhinweis == 0) fenster();
}

function berechne_a(){
  s= parseInt(document.forms[0].summe.value);
  a=parseInt(document.forms[0].aufwand.value);
  z= checkzahl(document.forms[0].zins.value);
  t= checkzahl(document.forms[0].tilgung.value);
  a= s/100 *(z+t)/12;
  document.forms[0].aufwand.value = parseInt(a)
  if (rechnerhinweis == 0) fenster();
}
