
var TabbedBoxJS = 
{
    ShowTab : function (TabID, TabCount)
    {
        var i=0;
        for (i=1;i<=TabCount;i++)
        {
            document.getElementById('TabbedBox_Tab' + i + '_Details').style.display = "none";
            document.getElementById('TabbedBox_Tab' + i).className = "TabbedBox_Tab";
        }
        document.getElementById("TabbedBox_Tab" + TabID + "_Details").style.display = "block";
        document.getElementById("TabbedBox_Tab" + TabID).className = "TabbedBox_SelectedTab";
    }
}
