var fDesc=new Array();
fDesc[0] = "Corrects a bug introduced in software that caused the Diversity Delay Trim control to be unavailable on PC Remote when connected to 8500s equipped with V1 DSP boards that have eight seconds of diversity delay installed. (It was still possible to adjust the delay from the 8500’s front panel.)
This bug did not affect V1 DSP boards with 16 seconds of delay installed and did not affect V2 DSP boards. (To determine which version of DSP board you have, refer to the explanation below.)
Corrects a bug that caused the SPEECH DETECT control to be missing or non-functional on the 8500’s GUI in both 2-band and 5-band modes. The control name appeared in 2-band mode in the GUI but there was no value shown in the field. For 5-band, the control was missing altogether.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}