﻿// pr_product_snippet.js

// Tries to activate a given TabPanel in a specified TabContainer and browse to a named anchor therein to display PowerReviews content in integrated
// product pages.
function activateDisplayTab(tabsName, tabIndex, namedAnchor)
{
    var tabs = $find(tabsName);
    if (tabs)
        tabs.set_activeTab(tabs.get_tabs()[tabIndex]);
    
    window.location.href = namedAnchor;
}