var fDesc=new Array();
fDesc[0] = "Show-Edit™ is an off-line / on-line editor for Show-Con. It runs under Windows 95/98/ME/NT/2K/XP/Vista(32) and allows all features of Show-Control to be programmed remotely.
Show-Edit offers a lamp library (in the same format as Mic-Edit) and lamp personality editor to facilitate control and programming of moving lamps.
Show-Edit ships with a library of lamp personalities for over 200 lamps.
Show-Edit also provides a uniques pass through mode which allows the show to be programmed live when Show-Control is connected.
The package includes the serial link interface which allows Show-Control to communicate with a PC via the RS232 or USB port.";
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 = '';
}
}