var fDesc=new Array();
fDesc[0] = "ColorPlay 3, light show authoring and configuration software, gives you the ability to create and manage light shows using fully customizable effects, multi-track editing, effect stacking, and custom transition styles.
ColorPlay 3 provides 24 customizable effects, and offers multiple techniques for editing the appearance and behavior of effects. Timeline, simulation, and live play features streamline light show authoring and debugging.";
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 = '';
}
}