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

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

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


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.forms[0].action = '/get/'+curl ;
    document.getElementById('download_start').style.display = '';
    document.getElementById('download_wait').style.display = 'none';
    document.forms[0].elements['id'].value='Ready';
}

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

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


begin_progress_bar(29);
