// MNB
// 12/18/08
// loads the tab structure for the program your product page

function showHowToTab(requestedTab)
{
    var Tab1 = document.getElementById("tab1");
    var Table1 = document.getElementById("table1");
    
    var Tab2 = document.getElementById("tab2");
    var Table2 = document.getElementById("table2");

    if (requestedTab == 1)
    {
        Tab1.style.display = 'block';
        Table1.style.display = 'block';
        
        Tab2.style.display = 'none';
        Table2.style.display = 'none';
    }
    else if (requestedTab == 2)
    {
        Tab2.style.display = 'block';
        Table2.style.display = 'block';
        
        Tab1.style.display = 'none';
        Table1.style.display = 'none';
    }
    else
    {
        Tab1.style.display = 'block';
        Table1.style.display = 'block';
        
        Tab2.style.display = 'none';
        Table2.style.display = 'none';
    }
}
