var fDesc=new Array();
fDesc[0] = "LightJockey 2 is a flexible, easy-to-use Windows-based controller utilizing a USB to DMX Interface.
One of the industry’s most popular PC-based controllers for well over a decade, LightJockey 2 offers lighting designers greater flexibility, spontaneity and ease of use in a user-focused control package.
Main features:
- Large fixture library and user configurable editor
- Real-time realistic 3D Visualizer MSD MC Edition for off-site programming
- Supports MP3, audio CD, SMPTE and MIDI timecode
- Martin USB Duo DMX interface with 2 x 512 Channels DMXIN/Out
- Control of up to 100 fixtures (680 RGB fixtures), 2048 DMX channels
- Graphical representation of all fixture functions
- Add-on LightJockey Manager, free downloadable software for scheduling events
- LED-Trix plug-in included for programming color-mixing fixtures";
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 = '';
}
}