﻿
function write_set_homepage()
{
    <!-- Begin
    // If it's Internet Explorer, use automatic link
    // Be sure to change the "http://www.YourWebSiteHere.com\"
    // to the URL you want them to bookmark.
    if (document.all){
      document.write('<A HREF="javascript:history.go(0);" onClick="this.style.behavior=\'url(#default#homepage)\';this.setHomePage(\'http://www.netpanel.pt\');">');
      document.write('Faça do NetPanel a sua homepage</a>');
    }

    // If it's Netscape 6, tell user to drag link onto Home button
    // Be sure to change the "http://www.YourWebSiteHere.com\"
    // to the URL you want them to bookmark.
    else if (document.getElementById){
      document.write('<a href="http://www.netpanel.pt" title="Arraste este link até ao ícone \'\'homepage\'\' da barra de navegação do Firefox">Faça do NetPanel a sua homepage</a>');
    }

}

function bookmarkSite(url, title){

    if (window.sidebar) window.sidebar.addPanel(title, url,"");

    else if( window.opera && window.print )
    {
    var mbm = document.createElement('a');
    mbm.setAttribute('rel','sidebar');
    mbm.setAttribute('href',url);
    mbm.setAttribute('title',title);
    mbm.click();
    }

    else if( document.all ) window.external.AddFavorite( url, title);

}
