function GoBackToLastSearch() {
    var cookies = new CookieManager();

    if (document.referrer.match(/Results.aspx/) || document.referrer.match(/Products.aspx/) ||
		(cookies.getValue('trackSearches') && document.referrer.match(cookies.getValue('trackSearches').replace('?', '\\?').replace('+', '\\+')))) {
        // use browser "back" if possible
        //   this will re-position the user's page for one (if they are at the bottom of the search page)
        history.go(-1);
    }
    else {
        location.href = cookies.getValue('trackSearches', '/');
    }
}

function GoBackToPreviousPage() {
    var cookies = new CookieManager();

    if (document.referrer.match(/Results.aspx/) || document.referrer.match(/Products.aspx/) ||
		(cookies.getValue('trackPreviousPage') && document.referrer.match(cookies.getValue('trackPreviousPage').replace('?', '\\?').replace('+', '\\+')))) {
        // use browser "back" if possible
        //   this will re-position the user's page for one (if they are at the bottom of the search page)
        history.go(-1);
    }
    else if (cookies.getValue('trackPreviousPage'))
        location.href = cookies.getValue('trackPreviousPage', '/');
    else
        GoBackToLastSearch();
}

$(function() {
    $(".aPrevPageBtn").click(function(e) {
        if (e.stop) e.stop();   //wonderful IE8, :p
        else e.preventDefault();
        GoBackToPreviousPage();
        return false;
    });
});
