﻿function addFavoritos() {
    if (window.external) {
        window.external.AddFavorite(location.href, document.title);
    }
}

function expand(elemento) {
    if (document.getElementById(elemento).className == "invisivel") {
        document.getElementById(elemento).className = "visivel";
        //document.getElementById(imagem).src = "/intpme/imagens/icon-menos.png";
    }
    else {
        document.getElementById(elemento).className = "invisivel";
        //document.getElementById(imagem).src = "/intpme/imagens/icon-mais.png";
    }
}

function redirect(pagina, id) {

    if (pagina.search("home") != 1) window.location = "/Default.aspx";

    if (pagina == "embar/quemsomos") window.location = "/Home/Quemsomos.aspx";
    if (pagina == "embar/associados/lista") window.location = "/Home/Associados.aspx";
    if (pagina == "embar/actividades") window.location = "/Home/Actividades.aspx";

    if (pagina == "embalagens/estatisticas") window.location = "/Embalagens/Estatisticas.aspx";
    if (pagina == "embalagens/nematodo") window.location = "/Embalagens/NemMadeira.aspx";
    if (pagina == "embalagens/normalizacao") window.location = "/Embalagens/Normalizacao";
    if (pagina == "embalagens/obrigacoeslegais") window.location = "/Embalagens/ObrigLegais.aspx";
    if (pagina == "embalagens/oquesao") window.location = "/Embalagens/Oquesao.aspx";
    if (pagina == "embalagens/produtores") window.location = "/Embalagens/Produtores.aspx";
    if (pagina == "embalagens/woodfood") window.location = "/Embalagens/WoodFood.aspx";

    if (pagina == "contactos") window.location = "/Contactos/Embar.aspx";
    if (pagina == "embar/associados/lista") window.location = "/Contactos/Associados.aspx";
    if (pagina == "links") window.location = "/Contactos/Links.aspx";

    if (pagina == "legislacao/comunitaria") window.location = "/Legislacao/Comunitaria.aspx";
    if (pagina == "legislacao/nacional") window.location = "/Legislacao/Nacional.aspx";

    if (pagina == "reciclagem/carbono") window.location = "/Reciclagem/Carbono.aspx";
    if (pagina == "reciclagem/ciclodevida") window.location = "/Reciclagem/CiclodeVida.aspx?id=" + id;
    if (pagina == "reciclagem/funcionamento") window.location = "/Reciclagem/FuncSistema.aspx";
    if (pagina == "reciclagem/grow") window.location = "/Reciclagem/Grow.aspx";

    if (pagina == "boletim") window.location = "/Boletim";
    if (pagina == "eventos") window.location = "Eventos";
    if (pagina == "noticias") window.location = "Noticias.aspx";
    if (pagina == "recusos/escolas") window.location = "/Recursos.aspx";

}
