$(document).ready(function(){
        $("#click").hide();
        $(this).delay(3000,function(){
            $("#timer").hide();
            $("#click").show();
            });
        });

var c = 60;
    function fcwait() {
      if (c > 0) {
        var el = document.getElementById("downloadDelayTimeSec")
        if( el ){
          el.innerHTML = "" + c
        }
        c = c - 1
        setTimeout("fcwait()", 1000)
      }
      else {
        document.getElementById("divDLWait").style.display = 'none';
        document.getElementById("divDLStart").style.display = 'block';
      }
    }
fcwait();

function cadAtt(){
    alert("Atencao: Voce deve se cadastrar acima antes!");
}