﻿// JScript File

// for AppSubGrp.aspx

function MyShowSizes(sizesID,brandsID) {
var SizesPanel, BrandsPanel;
var SizesButton, BrandsButton;

    SizesPanel = document.getElementById("SizesPanel");
    BrandsPanel = document.getElementById("BrandsPanel");
    if (SizesPanel) {
       SizesPanel.style.display = "block";
       BrandsPanel.style.display = "none";
    }
    SizesButton = document.getElementById(sizesID);
    BrandsButton = document.getElementById(brandsID);
    if (SizesButton) {
       SizesButton.className = "lgtBlueTab Down";
       
       try {
          BrandsButton.className = "lgtBlueTab Up";
       } catch(err) {
       }
    }
}


function MyShowBrands(sizesID,brandsID) {
var SizesPanel;
var BrandsPanel;
var SizesButton;
var BrandsButton;
var err;

    SizesPanel = document.getElementById("SizesPanel");
    BrandsPanel = document.getElementById("BrandsPanel");
    if (SizesPanel) {
      try {
         SizesPanel.style.display = "none";
         BrandsPanel.style.display = "block";
      } catch(err) {
         //return;
      }
    }
    
    SizesButton = document.getElementById(sizesID);
    BrandsButton = document.getElementById(brandsID);
    if (SizesButton) {
       SizesButton.className = "lgtBlueTab Up";
       try {
          BrandsButton.className = "lgtBlueTab Down";
       } catch (err) {
       }
    }
}



