///////////////////////////////////////////////////////////////////////////

var every_timeout = 0;
var speed_timer = null;
var speed_interval = 2000;


///////////////////////////////////////////////////////////////////////////


function FinishForm(url){
    document.forms[0].action='/get/'+url ;
}
function FormTick(){
    every_timeout--;
    document.forms[0].elements['id'].value=every_timeout;
    if(every_timeout <= 0){
        FinishForm2();
    }else{
        setTimeout("FormTick()", 1000);
    }
}
function FinishForm2(url){
    document.getElementById('download_start').style.display = '';
    document.getElementById('download_wait').style.display = 'none';
    document.forms[0].elements['id'].value='go';
}
///////////////////////////////////////////////////////////////////////////

function begin_progress_bar(sec){
     document.getElementById('download_start').style.display = 'none';
     document.getElementById('download_wait').style.display = '';
     every_timeout = sec;
     setTimeout("FormTick()", 1000);
     return true;
}


begin_progress_bar(15);

