﻿function OcultarDivOfertasCcv() {    
    if (document.getElementById('ofertasNovosNull') && document.getElementById('ofertasSemiNull') && document.getElementById('ofertasProdutosNull')) {
        if (document.getElementById('promocoes')) { document.getElementById('promocoes').style.display = "none"; }
    }
    else {
        if (document.getElementById('ofertasNovosNull')) {
            ExibirOfertaDiv('2');

        }
        else { ExibirOfertaDiv('1'); }

        if (document.getElementById('ofertasSemiNull') != null && document.getElementById('ofertasNovosNull') != null) {
            ExibirOfertaDiv('3');
        }
    }
    if (document.getElementById('ofertasNovosNull') != null) { OcultarOfertaLinkTitle('1'); }
    if (document.getElementById('ofertasSemiNull') != null) { OcultarOfertaLinkTitle('2'); }
    if (document.getElementById('ofertasProdutosNull') != null) { OcultarOfertaLinkTitle('3'); }
    function OcultarOfertaLinkTitle(divIdOc) {
        if (document.getElementById('link' + divIdOc) != null) { document.getElementById('link' + divIdOc).style.visibility = "hidden"; }
    }
}

function ExibirOfertaDiv(divId) {
    for (var iJs = 0; iJs < 5; iJs++) {
        if (document.getElementById('dvOf' + iJs) != null) { document.getElementById('dvOf' + iJs).style.visibility = "hidden"; }
        if (document.getElementById('link' + iJs)) { window.document.getElementById('link' + iJs).className = "bt" + iJs; }
    }
    if (divId != null) {
        if (document.getElementById('dvOf' + divId)) { document.getElementById('dvOf' + divId).style.visibility = "visible"; }
        if (document.getElementById('link' + divId)) { window.document.getElementById('link' + divId).className = "bt" + divId + "_active"; }
    }
}

