﻿//Bookmark and Print Page
function addBookmark(title, url) {
    // If they've arrived to the style page via search remove the search string for bookmark link
    url = url.replace(/\?SearchTerm=(\d)*/, "")
    //url = 'http://' + window.location.host + url
    //alert( url )
    if (window.sidebar) { // firefox
        window.sidebar.addPanel(title, url, "");
    } else if (document.all) { //MSIE
        window.external.AddFavorite(url, title);
    } else {
        alert("Sorry, your browser doesn't support this");
    }
}
function printPage() {
    window.print();
}