var fDesc=new Array();
fDesc[0] = "Neat Video plug-in for Edius is a filter plug-in designed to reduce visible noise in digital video clips. The program features: Advanced Noise Reduction to reduce noise and grain in video clips, Smart Sharpening to make video sharper without amplification of noise, automatic noise analyzer to adapt the plug-in to any video sources, both intra-frame and temporal filtration, 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 = '';
}
}