/***********************************************************************************
* Implements a timed redirection of the current window to the default landing page.
* This mechanism relies on the DX Timer control (RedirectionTimer).
/***********************************************************************************/

var timerCounter;

function timerInit() {
    timerCounter = 5;
    timerUpdate();
}                       
function timerTick() {
    timerCounter -= 1;
    timerUpdate();            
}
function timerUpdate() {
    if (timerCounter > 0) {
        document.getElementById("timerCountdown").innerHTML = timerCounter.toString();                
    }
    else {
        redirectionTimer.SetEnabled(false);

        // redirect to the default landing page
        window.location = "http://www.need4home.com"
    }        
}

