var fDesc=new Array();
fDesc[0] = "Continuum Complete AVX brings over 200 filters to Avid Media Composer, Avid Symphony, and Avid NewsCutter. The new release features lens blur effects, a video noise reduction tool, a new OpenGL particle engine, and new on-screen overlay control widgets for streamlined workflow.
Smoothes out video noise using spatial and temporal information derived from the video clip - especially in dark areas of an image.
Emulates a popular lens blur or rack defocus effect where out-of-focus highlights of an image clip take on the shape of the lens shutter. The filter includes a gradient map layer to control the depth of focus.
Designer effect similar to a rack defocus effect where the shape of the bokeh can be imported from an external layer. Wipe filter that applies a lens blur or rack defocus effect to the specular highlights of outgoing and incoming image clips.
BCC Particle Array 3D is an OpenGL-accelerated particle-based 3D generator. It generates a 3D array of particles and offers several interesting ways of manipulating the array based on graph controls, fractal noise patterns, random dispersion, and more.";
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 = '';
}
}