var fDesc=new Array();
fDesc[0] = "This software enables to use any Windows PC or Tablet as a Cue System control panel. It is a suitable addition to CUE control panels. The GUI application has to be designed using standard programming tool - Cue Visual Composer.
Features:
- Compatible with Microsoft® Windows XP/Vista/7 (32/64-bit)
- Application designed with Cue Visual Composer
- Full screen mode available
- Application upload directly from Cue Visual Composer or using configuration window
- Ethernet wired or wireless communication between the panel and the control 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 = '';
}
}