﻿//--------FUNÇAO APARECER OU DESAPARECER OBJ-----+
function magica(obj, escolha) {

    var el = document.getElementById(obj);


    pegar = document.getElementById("atualID").value;
    if (pegar != "0") {
        document.getElementById(pegar).style.display = 'none';
    }

    document.getElementById("atualID").value = obj;



    var elemento = document.getElementById(obj);
    var escolha;
    if (escolha == "some") {
        elemento.style.display = 'none';
    } else {
        elemento.style.display = '';
    }
}

function acesso(tipo, veiculo) {
    //antigo
    if (tipo == 0) {
        //login
        window.location.href = 'https://www.sigero.com.br/HMCliente';
    }
    if (tipo == 1) {
        //primeiro acesso
        window.location.href = 'https://www.sigero.com.br/HMCliente/App_Cadastro/webPrimeiroAcesso.aspx';
    }
    if (tipo == 2) {
        //fale conosco
        window.location.href = 'http://www.dersa.sp.gov.br/faleconosco/fale_conosco_horamarcada.asp';
    }    
}