
function gotoUrl(url, x) {

    timer = x - 1;
    destUrl = url;
    setTimeout("gotoUrl(destUrl,timer)", 1000);
    
    if (timer == 0) {    
        window.location = url;
    }
}