﻿function ExpandeContraiPainel(Id,caminhoImg)
{ 
    caminhoImg +=  "../../Recurso/imagens/"; 
    
    var IsExpandido = document.getElementById(Id + '_IsExpandido').value; 
    try
    {
        if (IsExpandido == 'true')
        { 
            document.getElementById(Id + '_Conteudo').style.display = 'none'; 
            document.getElementById(Id + '_IsExpandido').value = 'false'; 
            document.getElementById(Id + '_Imagem').src = caminhoImg + 'i_seta_baixo_0001.gif';
        } 
        else
        { 
            document.getElementById(Id + '_Conteudo').style.display = ''; 
            document.getElementById(Id + '_IsExpandido').value = 'true'; 
            document.getElementById(Id + '_Imagem').src = caminhoImg + 'i_seta_cima_0001.gif'; 
        }     
    }
    catch(e)
    {}
}

function ExpandePainel(Id,caminhoImg)
{ 
    caminhoImg +=  "../../Recurso/imagens/"; 
    
    var IsExpandido = document.getElementById(Id + '_IsExpandido').value; 
    try
    {
        document.getElementById(Id + '_Conteudo').style.display = ''; 
        document.getElementById(Id + '_IsExpandido').value = 'true'; 
        document.getElementById(Id + '_Imagem').src = caminhoImg + 'i_seta_cima_0001.gif'; 
    }
    catch(e)
    {}
}

function OnMouseOverGrupo(Id,caminhoImg)
{
    caminhoImg +=  "../../Recurso/imagens/"; 
    var IsExpandido = document.getElementById(Id + '_IsExpandido').value; 
    try
    {
        if (IsExpandido == 'true')
        { 
            document.getElementById(Id + '_Imagem').src = caminhoImg + 'i_seta_cima_0002.gif'; 
        } 
        else
        { 
            document.getElementById(Id + '_Imagem').src = caminhoImg + 'i_seta_baixo_0002.gif';
        }     
    }
    catch(e)
    {}
}

function OnMouseOutGrupo(Id,caminhoImg)
{
    caminhoImg +=  "../../Recurso/imagens/"; 
    var IsExpandido = document.getElementById(Id + '_IsExpandido').value; 
    try
    {
        if (IsExpandido == 'true')
        {
            document.getElementById(Id + '_Imagem').src = caminhoImg + 'i_seta_cima_0001.gif'; 
        }
        else
        {
            document.getElementById(Id + '_Imagem').src = caminhoImg + 'i_seta_baixo_0001.gif';
        }
    }
    catch(e)
    {}
}