   var janela_actual     = 1;
   var caixa_actual      = 1;
   var informacao_actual = 0;
   function pagina(id)
   {
    subpagina(1);
    document.getElementById("titulo" + janela_actual).style.backgroundColor = "transparent";
    document.getElementById("janela" + janela_actual).style.display = "none";
    document.getElementById("titulo" + id).style.backgroundColor = "#8d1866";
    document.getElementById("janela" + id).style.display = "block";
    informacao(0);
    janela_actual = id;
    subpagina(1);
   }
   function subpagina(id)
   {
    informacao(0);
    if(document.getElementById("subtituloJ" + janela_actual + "S" + caixa_actual))
     document.getElementById("subtituloJ" + janela_actual + "S" + caixa_actual).style.backgroundColor = "transparent";
    document.getElementById("caixaJ" + janela_actual + "C" + caixa_actual).style.display = "none";
    if(document.getElementById("subtituloJ" + janela_actual + "S" + id))
     document.getElementById("subtituloJ" + janela_actual + "S" + id).style.backgroundColor = "#16226a";
    document.getElementById("caixaJ" + janela_actual + "C" + id).style.display = "block";
    caixa_actual  = id;
   }
   function informacao(id)
   {
    if(document.getElementById("informacaoJ" + janela_actual + "C" + caixa_actual + "I" + informacao_actual))
     document.getElementById("informacaoJ" + janela_actual + "C" + caixa_actual + "I" + informacao_actual).style.display = "none";
    if(id != informacao_actual && document.getElementById("informacaoJ" + janela_actual + "C" + caixa_actual + "I" + id))
    {
     document.getElementById("informacaoJ" + janela_actual + "C" + caixa_actual + "I" + id).style.display = "block";
     informacao_actual = id;
    }
    else
     informacao_actual = 0;
   }


