﻿function ExibirGaleria(num)
{    
    if(document.getElementById("Galeria_"+ num).style.display == 'none')
    {        
        var lista = $('div.detailGaleria');
        for(j=0; j<lista.length; j++)
            lista[j].style.display = 'none';
        if(document.getElementById("Galeria_"+ num).style.display == 'none')
            document.getElementById("Galeria_"+ num).style.display = '';
    }
    else
        document.getElementById("Galeria_"+ num).style.display = 'none';
}

function FecharGaleria(galeria)
{
    document.getElementById('galeria'+galeria).style.display = 'none';
    hideModalPopupViaClient();
}

function showModalPopupViaClient()
{
    var modalPopupBehavior;
    modalPopupBehavior = $find('programmaticModalPopupBehavior');
    modalPopupBehavior.show();
}

function hideModalPopupViaClient() {
    var modalPopupBehavior = $find('programmaticModalPopupBehavior');
    modalPopupBehavior.hide();
}