var fDesc=new Array();
fDesc[0] = "Grand-Master Flash!™ is a Virtual Lighting Console which runs on a PC and outputs DMX512 through either the Dongle II or an Art-Net Ethernet product such as Net-Lynx O/P.
Grand-Master Flash! features a sophisticated and fully editable lamp library. The main stage screen operates as both a lamp selector and an animated stage mimic.
A total of 2048 lamps using up to 2048 channels on 12 simultaneous submasters make Grand-Master Flash! perfect for Industrial, Architectural, Broadcast, Theme Park, Museums and Theatre.";
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 = '';
}
}