var fDesc=new Array();
fDesc[0] = "The UDC software is intended to allow you to easily control many different devices.
Main features:
- Configure up to 30 Devices
- Choose from System Command Sets
- Build your own Custom Command Sets to control any Device
- Add as many virtual UDC 400 Controllers as you want
- Matrix Router Functions to control multiple routers with a common XY panel
- Simple configuration
- Open structured software makes a great learning tool
- Create Macros for powerful Device control
- Control any Device with TCP, UDP, RS232 serial, Contact Closure, IR and much more
- Simple configuration GUI allows you to take control of your AV system";
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 = '';
}
}