var fDesc=new Array();
fDesc[0] = "It provides a customer facing interface for selecting and triggering audio-visual and lighting events.
The product uses a configurable matrix of touch screen buttons to send custom trigger signals to connected equipment using Ethernet, Art-Net, MIDI and RS232. Button pages can also be changed based on received triggers or time clock events.
A built in advertising system allows display of animated slide sequences after a period of inactivity.
Finger-Trouble will find applications in conference, multi-function venues and architectural feature 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 = '';
}
}