var fDesc=new Array();
fDesc[0] = "The software is used to program the DMXPlayBack MK2 only, have a feel of how easy it is to create great shows using ShowEditor Mk2
You can use the software without the hardware in Offline mode.
If you have ever used a real lighting console before you will really feel at home with ShowEditor. Once on your computer, run the file, the installer will create a link in your Start Menu to Show Editor.";
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 = '';
}
}