var imgPath = '/images/download-assets/';

var tab_on  = new Array();
var tab_off = new Array();
var tab_head  = new Array();


tab_on[0] =  new Image();
tab_on[0].src = imgPath + 'chart-999.gif';

tab_on[1] =  new Image();
tab_on[1].src = imgPath + 'chart-over-1000.gif';


tab_off[0] =  new Image();
tab_off[0].src = imgPath + 'OrgPlus_inact.gif';

tab_off[1] =  new Image();
tab_off[1].src = imgPath + 'Enterprise_inact.gif';


tab_head[0] =  new Image();
tab_head[0].src = imgPath + 'orgplus-trial.gif';

tab_head[1] =  new Image();
tab_head[1].src = imgPath + 'ope-org-chart-logo.gif';

var tabSel = 1;

function showTab(id) {
// if (id != tabSel) {
  hideTab(tabSel);
  tabSel = id;
  document.getElementById("tc"+id).src = tab_on[id-1].src;
  document.getElementById("tchead").src = tab_head[id-1].src;
  document.getElementById("tab"+id).style.display = (id==2) ? "block" : "inline";
// }
}

function hideTab(id) {
 document.getElementById("tc"+id).src = tab_off[id-1].src;
 document.getElementById("tchead").src = tab_head[id-1].src;
 document.getElementById("tab"+id).style.display = "none";
}

