﻿var bLinkClicked = false;

function CreateBookmarkLink() {
    title = 'Totally Nourish (' + window.location + ') the freedom of good health, the possibilities of nature';
    url = window.location;
    if (window.sidebar) { // Mozilla Firefox Bookmark
        window.sidebar.addPanel(title, url, "");
        alert('Thank you for bookmarking this page.');
    } else if (window.external) { // IE Favorite
        window.external.AddFavorite(url, title);
        alert('Thank you for adding this page to your favourites.');
    } else if (window.opera && window.print) { // Opera Hotlist
        return true;
    }
}
