var countdown = 11;
var stopcountdown = false;
      
function countdownloop() {
        countdown -= 1;
        if(countdown == 0) zeroaction();
        document.getElementById('zahl').innerHTML = countdown;
        setTimeout("triggerloop()",1000);
}
      
function stoploop() {
        stopcountdown = true;
        document.getElementById("redirinfo").innerHTML = "<br><i>Die automatische Weiterleitung wurde deaktiviert.</i>"
}
      
function triggerloop() {
        if(!(stopcountdown == true)) countdownloop();
}
      
function zeroaction() {
        window.location = "index2.php";
}
