/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function MudaDisplay(id)
{
    sinal = "img_" + id;

    if( document.getElementById(id).style.display=="block" )
    {
        document.getElementById(id).style.display="none";
        document.getElementById(sinal).src = "imagens/index2007/botao_mais.jpg";
        document.getElementById(sinal).alt = "Expandir";

    }
    else
    {
        document.getElementById(id).style.display="block";
        document.getElementById(sinal).src = "imagens/index2007/botao_menos.jpg";
        document.getElementById(sinal).alt = "Ocultar";
    }
}


function MudaDisplay(id)
{
    sinal = "img_" + id;

    if( document.getElementById(id).style.display=="block" )
    {
        document.getElementById(id).style.display="none";
        document.getElementById(sinal).src = "../imagens/index2007/botao_mais.jpg";
        document.getElementById(sinal).alt = "Expandir";

    }
    else
    {
        document.getElementById(id).style.display="block";
        document.getElementById(sinal).src = "../imagens/index2007/botao_menos.jpg";
        document.getElementById(sinal).alt = "Ocultar";
    }
}
