function Preferiti()
{
    var title = document.title;
    var url = document.location.href;
    if (window.sidebar) // Mozilla Firefox
    {
        window.sidebar.addPanel('Hieracon.it - Conoscere Carloforte e San Pietro', 'http://www.hieracon.it/index.php', "");
    }
    else if (window.external) // Internet Explorer
    {
        window.external.AddFavorite('http://www.hieracon.it/index.php', 'Hieracon.it - Conoscere Carloforte e San Pietro');
    }
    else if (window.opera && window.print) // Opera
    {
        var elem = document.createElement('a');
        elem.setAttribute('http://www.hieracon.it/index.php', url);
        elem.setAttribute('Hieracon.it - Conoscere Carloforte e San Pietro', title);
        elem.setAttribute('rel', 'sidebar');
        elem.click();
    }
}

