var fDesc=new Array();
fDesc[0] = "The 8960 User Calibration Utility is multi-threaded and automated to support the User Calibration task for up to three 8960 test set connections simultaneously
Key Features :
- Auto-constructs an optimized, custom user-calibration sequence
- Auto-application switching of the user-calibration sequence
- No fussing with setting test set GPIB addresses
- Logging pop-up window list captures up to 100 entries
- Safe to remove or add test sets without disturbing calibrations in progress";
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 = '';
}
}