var fDesc=new Array();
fDesc[0] = "The Xchange program allows you to modify the settings of the detector and either save them to your PC, or upload them into your E-Trac.You can download, save and upload
Discrimination Patterns but you cannot edit them on your PC.
E-Trac’s settings can be divided into three groups: Mode Settings, Universal Settings and Preferences. The E-Trac Xchange screen layout groups these settings to allow you to easily identify which group the setting belongs to.";
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 = '';
}
}