var fDesc=new Array();
fDesc[0] = "Baselight Editions extends the capabilities of a high-end colour grading system directly onto the Avid timeline in a powerful, flexible, and tightly integrated workflow.
This AVX plugin features unlimited layers of colors, grading inside and outside mattes, variable feathering, point tracking and area tracking — all live and fluidly interactive on the Avid timeline, minimising and even eliminating the need to go back into the colour suite with last-minute changes.";
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 = '';
}
}