function ulubione(a) {
    var nazwa = 'Agroturystyczny Dom Spokojnej Starości';
    var url = 'http://www.dom-spokojnej-starosci.pl/';
    if (window.sidebar) {
        window.sidebar.addPanel(nazwa, url, "");
        return false;
    } else if (window.external) {
        window.external.AddFavorite(url, nazwa);
        return false;
    } else {
        a.setAttribute('title',nazwa);
        a.setAttribute('rel','sidebar');
    }
    return true;
}

