var fDesc=new Array();
fDesc[0] = "Neat Video is a filter plug-in designed to reduce visible noise in digital video clips.
Main Features:
- Advanced Noise Reduction to reduce noise and grain in video clips
- Both intra-frame and temporal filtration
- Automatic noise analyzer to adapt the plug-in to any video sources
- Smart Sharpening to make video sharper without amplification of noise
- High-bitdepth rendering
- CUDA and OpenCL acceleration";
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 = '';
}
}