function AddFavorite() {
  if ((navigator.appName == "Microsoft Internet Explorer") && 
    (parseInt(navigator.appVersion) >= 4)) {
    window.external.AddFavorite(document.location, document.title);
  } else {
    var sMsg = "Il tuo browser non supporta questa funzione.\nDevi aggiungere manualmente questa pagina ai preferiti.\n\n" +
      "TITOLO:\n" + document.title + "\n\nURL:\n" + document.location;
    if (navigator.appName == "Netscape")
      sMsg += "\nPuoi usare [CTRL + D].\n\n\n______________________\n\n\n" +
"Your browser doesn't support this function.\nYou must add manually this page to your bookmarks.\n\n" +
      "TITLE:\n" + document.title + "\n\nURL:\n" + document.location;
    if (navigator.appName == "Netscape")
      sMsg += "\nYou can use [CTRL + D].";
    window.alert(sMsg);
  }
}