// JavaScript Document

function addFavoritos() {
    if (window.sidebar) { // Mozilla Firefox Bookmark
        window.sidebar.addPanel(document.title, document.URL, "");
    }
    else if (window.external) { // IE Favorite
        window.external.AddFavorite(document.URL, document.title);
    }
    else if (window.opera && window.print) { // Opera Hotlist
        var elem = document.createElement('a');
        elem.setAttribute('href', document.URL);
        elem.setAttribute('title', document.title);
        elem.setAttribute('rel', 'sidebar');
        elem.click();
    }
    else {
        alert("Este navegador n&#227;o suporta esta ac&#231;&#227;o. Por favor adicione manualmente.");
    }
}
