﻿function CentralizarCarregando() {
    var objCarregando = document.getElementById('wait_panel');
    var objPainelFundo = document.getElementById('disable_panel');
    if (objCarregando) {
        var Height = window.innerHeight;
        var Width = window.innerWidth;
        if (!Height)
            Height = SelecionarTamanhoTelaHeight();
        if (!Width)
            Width = SelecionarTamanhoTelaWidth();
        objCarregando.style.top = ((Height - objCarregando.style.height.replace("px", "")) / 2) + "px";
        objCarregando.style.left = ((Width - objCarregando.style.width.replace("px", "")) / 2) + "px";
        objPainelFundo.style.width = "100%";
        objPainelFundo.style.height = Height + "px";
    }
    TamanhoConteudo();
    return true;
}

function mostrarCadastre() {
    if (document.getElementById('formLogin') != null) {
        document.getElementById('formLogin').style.display = 'none';
    }
    else {
        document.getElementById('usuarioLogin').style.display = 'none';
    }

    document.getElementById('cadastreSe').style.display = '';
}

function mostrarLogin() {
    document.getElementById('cadastreSe').style.display = 'none';

    if (document.getElementById('formLogin') != null) {
        document.getElementById('formLogin').style.display = '';
    }
    else {
        document.getElementById('usuarioLogin').style.display = '';
    }
}

function TamanhoConteudo() {
    var objCentro = document.getElementById("divConteudoGeral");
    if (objCentro) {
        var Height = window.innerHeight;
        if (!Height)
            Height = SelecionarTamanhoTelaHeight();
        Height = Height - 142;
        objCentro.style.height = Height + "px";
    }
}

