<!--
function start_registration(tariff){
  var width = 800;
  var height = 800;
  var left = (screen.width / 2) - width / 2;
  var top = (screen.height / 2) - height / 2;
  var mypopup = window.open("index.php?tpl=step1&tariff=" + tariff, "Anmeldung", "left="+left+",top="+top+",width="+width+",height="+height+",dependent=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no");
  mypopup.focus();
}
function start_registration2(){
  var width = 800;
  var height = 800;
  var left = (screen.width / 2) - width / 2;
  var top = (screen.height / 2) - height / 2;
  var mypopup = window.open("", "Anmeldung", "left="+left+",top="+top+",width="+width+",height="+height+",dependent=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no");
  if(mypopup) {
    mypopup.focus();
    return true;
  }
}
function show_schufa(param1){
  var width = 800;
  var height = 800;
  var left = 10;//(screen.width / 2) - width / 2;
  var top = 10;//(screen.height / 2) - height / 2;
  var mypopup = window.open("index.php?tpl=pt_schufa", "SCHUFA_Erklaerung", "left="+left+",top="+top+",width="+width+",height="+height+",dependent=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no");
  mypopup.focus();
}
function show_agb(param1){
  var width = 800;
  var height = 800;
  var left = 10;//(screen.width / 2) - width / 2;
  var top = 10;//(screen.height / 2) - height / 2;
  var mypopup = window.open("index.php?tpl=pt_agbuser", "AGB", "left="+left+",top="+top+",width="+width+",height="+height+",dependent=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no");
  mypopup.focus();
}
function show_widerruf(param1){
  var width = 800;
  var height = 800;
  var left = 10;//(screen.width / 2) - width / 2;
  var top = 10;//(screen.height / 2) - height / 2;
  var mypopup = window.open("index.php?tpl=pt_widerruf", "Hinweis_zum_Widerrufsrecht", "left="+left+",top="+top+",width="+width+",height="+height+",dependent=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no");
  mypopup.focus();
}
function CheckDezimal(myname) {
  var allowed_signs = "0123456789";
  var myerror = '';
  for (var Pos = 0; Pos < myname.value.length; Pos++) {
    if(allowed_signs.indexOf(myname.value.charAt(Pos)) == -1) {
      myerror += "Es sind nur folgende Zeichen erlaubt:\n";
      myerror += allowed_signs;
      alert(myerror);
      myname.focus();
      return;
    }
  }
}
//-->