var segundos = 60;
function contador(){
    if(segundos == 0) {
        document.getElementById('link0').style.display="none";
        document.getElementById('link').style.display="block";
        document.getElementById('msg').style.display="none";
    }
    if (segundos != 0){
        segundos = segundos-1;
        setTimeout("contador()", 1000);
    }
}
function confirmGo(URL) {
    alert("Se voce se cadastrou, obrigado e bom download!")
    document.location = URL;
}
function cad() {
   window.alert('Atencao: Antes de fazer o DOWNLOAD voce precisa CADASTRAR seu celular!');
}