<!--
    function bookmarkSite() {
      title = document.title;
      url   = document.location.href;
      if (window.sidebar) { // Mozilla Firefox Bookmark
        window.sidebar.addPanel(title, url,"");
      } else if( window.external ) { // IE Favorite
        window.external.AddFavorite( url, title);
      }
      return false;
    }

function iniziale() {
if (document.all) {
  document.body.style.behavior = 'url(#default#homepage)';
  document.body.setHomePage(document.location.href);
} else {
  alert("Funzione abilitata solo per Internet Explorer");
}
}
//-->