﻿function Duvida_Open(n) {
    var Obj1 = document.getElementById("rs" + n);
    var Obj2 = document.getElementById("plus" + n);
    if (Obj1.style.display == "") {
        Obj1.style.display = (n == "0" ? "block" : "none");
    }
    if (Obj1 && Obj2) {
        if (Obj1.style.display == "none") {
            Obj1.style.display = "block";
            Obj2.innerHTML = "[&ndash;]";
        }
        else {
            Obj1.style.display = "none";
            Obj2.innerHTML = "[+]";
        }
    }
}

function showTblPrices() {
    document.getElementById("showTbl").style.display = "none";
    document.getElementById("showTblPrice").style.display = "block";
}

function DirectTalk() {
    var url = "http://www7.directtalk.com.br/clientes/custom/Sinasa/redir_chat.html";
    url = dpcTracker._getLinkerUrl(url);
    window.open(url, 'POPUP1111', 'width=500,height=600');
}

function IndiqueForm(s) {
    obj1 = document.getElementById("indiqueForm");
    obj2 = document.getElementById("indiqueField");

    if(s == "1"){
        
        obj1.style.display="block";
        obj2.style.display = "block";
    
    }else{
    
        obj1.style.display="none";
        obj2.style.display = "none";
    
    }

}

