var fDesc=new Array();
fDesc[0] = "CompositeLab Pro opens up a world of new possibilities for creative filmmakers, providing a massive range of tools for altering and combining images and videos to create brand new shots.
CompositeLab Pro includes a versatile collection of compositing features that have limitless potential. Single actors can be turned into clone armies; superhero effects such as flying, superspeed and invisibility can be created with ease; props, people and animals can be shrunk or enlarged to any size; an ordinary beach can be turned into a warzone – there’s no limit to the possibilities.";
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 = '';
}
}