var fDesc=new Array();
fDesc[0] = "DDUtil automatically senses when a RCP is trying to communicate with PowerSDR and modifies it's mode of operation accordingly.
DDUtil may be used in a stand-alone mode or with up to four (5) Radio Control Programs (RCPs) running simultaneously.
DDUtil provides the automation required to decode and present transmit frequency data to select frequency sensitive devices";
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 = '';
}
}