<!-- DHTML Tabsets John C. Cokos iWeb Inc. 02/11/16 Mod. M.Wakida
var NS4 = (document.layers) ? 1 : 0;
var IE = (document.all) ? 1 : 0;
var DOM = 0;
if (parseInt(navigator.appVersion) >=5) {DOM=1};
var currShow;
function showFirst() {
  if (DOM) {
    currShow = document.getElementById('E99');
	} else if (IE) {
    currShow = document.all['E99'];
  }
  showExpl(99);

  target = 'E97';
  if (DOM) {
    var alist = document.getElementById(target);
    alist.style.visibility = 'visible';
    return false;
	} else if (IE) {
    document.all[target].style.visibility = 'visible';
    return false;
  }
}
function showExpl(tgt) {
  target = ('E' + tgt);
  if (DOM) {
    currShow.style.visibility = 'hidden';
    var flipOn = document.getElementById(target);
    flipOn.style.visibility = 'visible';
    currShow = document.getElementById(target);
    return false;
	} else if (IE) {
    currShow.style.visibility = 'hidden';
    document.all[target].style.visibility = 'visible';
    currShow = document.all[target];
    return false;
  } else {
    window.location = ('#A' + target);
    return true;
  }
}
//-->

