var fDesc=new Array();
fDesc[0] = "The e:cue Programmer combines the concept of modern lighting consoles with the widely known Windows user interface. It includes innovative and intuitive tools for programming special lighting effects, video-to-light pixel mapping, visualization of the lighting installation, and special triggering and automation features.
Main features:
- Versatile MIDI interfacing.
- Advanced RDM handling.
- Enhanced scalability.
- Higher channel counts.
- Support for Butler PRO, Lighting Control Engine 2 and Lighting Control Engine 2 fx.";
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 = '';
}
}