var fDesc=new Array();
fDesc[0] = "The RDM controller is an application designed to control RDM fixtures.
Features:
- Full Discovery : Detects all RDM Devices and adds them to the List
- Sub Devices: Detects any Sub Devices for a selected device
- Get Supported Parameters
- Descriptions for all PIDs
- GET and SET for All PIDs (even user defined)
- Monitor your fixture for any sensors with easy to view info
- Conforms to The Full ANSI E1.20 (2006) RDM Standard
- Control & Monitor upto 512 RDM devices
- Drag & Drop Patching
- Status Messages
- Monitor Sensors";
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 = '';
}
}