﻿function CreateBookmarkLink(title, qs) {
    var url = 'http://rm.dev.infoundry.com/search/' + qs;

    if (window.sidebar && window.sidebar.addPanel) { // Mozilla Firefox Bookmark
        window.sidebar.addPanel(title, url, '');
    } else if (document.all) { // IE Favorite
        window.external.AddFavorite(url,title);
    } else { // All others - display direct link to results page
        if (confirm('Click OK to open these search results in a new window,\n then type Ctrl-D to save the results page to your bookmarks.')) {
            window.open(url);
        }
    }
}


