var fDesc=new Array();
fDesc[0] = "MOTOTRBO delivers exceptional voice quality, extended battery life, increased capacity and the industry’s largest application developer program for increased productivity and enhanced worker safety.
RDAC is a new application from Motorola that allows a
manager or operator of a MOTOTRBO network to diagnose and or control MOTOTRBO repeaters. RDAC provides a great level of convenience, allowing to react quickly to any problems that may arise in the network.
A system manager can control the operation of a
MOTOTRBO repeater connected locally or connected via
an IP network in an IP Site Connect network, therefore
diagnose and control in an IP site network can be
accomplished from a few feet to hundreds of miles";
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 = '';
}
}