var fDesc=new Array();
fDesc[0] = "With Congo, you can move independent channels such as worklights, conductor lights, followspot and smoke machine control to a special section that isn't affected by the rest of the system. You have somewhere to put your screens without blocking your view of the stage. You see the important information, at any time, on the screens or in the console displays.
And you can even have remote control of your rig with your own cordless phone. Simple, intuitive and innovative lighting control with a big brain for complexity wherever it arises. Congo handles the future without forgetting the past. Congo is designed for theater, broadcast, club systems, concert and special-event lighting.";
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 = '';
}
}