var idlist = new Array();
function TP_1208272173_ManageDisplay(which) {
for(var i = 1; i <= 3; i++) {
  if(i == which) {
    document.getElementById('TP_1208272173_tab'+i+'foreground').style.display = "block";
    document.getElementById('TP_1208272173_tab'+i+'background').style.display = "none";
    document.getElementById('TP_1208272173_content'+i).style.display = "block";
    document.getElementById('TP_1208272173_TAB'+i).style.color = "";
    document.getElementById('TP_1208272173_TAB'+i).style.backgroundColor = "";
    }
  else {
    document.getElementById('TP_1208272173_tab'+i+'foreground').style.display = "none";
    document.getElementById('TP_1208272173_tab'+i+'background').style.display = "block";
    document.getElementById('TP_1208272173_content'+i).style.display = "none";
    document.getElementById('TP_1208272173_TAB'+i).style.color = "";
    document.getElementById('TP_1208272173_TAB'+i).style.backgroundColor = "";
    }
  }
}
function TP_1208272173_Initialize() {
for(var i = 1; i <= 3; i++) {
  idlist.push('TP_1208272173_tab'+i+'foreground');
  idlist.push('TP_1208272173_tab'+i+'background');
  idlist.push('content'+i);
  }
TP_1208272173_ManageDisplay(1);
}
TP_1208272173_Initialize();

