var fDesc=new Array();
fDesc[0] = "The FA-300 Series Configuration Tools helps you configure the FA-300 FIRE ALARM CONTROL PANELS that consist of eight and twelve zone models which are
equipped with an LED display and an integrated
UDACT/Digital Communicator on select models. The
FA-300 Series family also includes remote LED and
LCD annunciators as well as remote relay modules. The program has 3 different sections:System, Zones and Dialer, for easier configuration.";
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 = '';
}
}