﻿    //function window.onerror(){return true;}

    var blnAncora = true;
    
    function showAereoHotel(p_strTipo){
        document.getElementById("divAbaA").style.display = (p_strTipo == "A") ? "" : "none";
        document.getElementById("divAbaH").style.display = (p_strTipo == "H") ? "" : "none";
        
        if (gobjIframe != null) gobjIframe.style.display = "none";

        var objDivs = document.getElementsByTagName("DIV");
        for(var i = 0; i < objDivs.length; i++){
            if(objDivs[i].style.display == "" && objDivs[i].id.indexOf("divVejaMaisDetalhes") != -1){
                objDivs[i].childNodes[1].innerHTML = "";
                if (objDivs[i].childNodes[3].style != undefined)
                    objDivs[i].childNodes[3].style.display = "none";
            }
        }
        
        if (blnAncora)
            document.location = "#ancAbas";
    }

    function escolherEste(p_strTipo){
        blnAncora = false;
        showAereoHotel(p_strTipo);
        blnAncora = true;
        window.setTimeout("document.location = '#ancPlanos';", 1000);
    }
    
