var fDesc=new Array();
fDesc[0] = "RE:Flex brings intuitive morphing and warping to After Effects and Fusion. RE:Flex is especially easy to learn because it uses the host program's own drawing and masking tools (when available) to direct the warping and morphing; as such, there is no need to learn a whole new user interface. Warping is directed through the host program's roto tools (splines and polylines), not through a grid of mesh points";
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 = '';
}
}