var fDesc=new Array();
fDesc[0] = "UM Video Color Filter is a powerful transform filter that allows invert and grayscale the video, change the brightness, contrast, hue and saturation.
Main features:
- Support invert and grayscale the video.
- Support change the brightness, contrast, hue and saturation.
- It can be used during capture for real-time processing, during conversion or during playback to enhance existing media files.
- Compatible with any programming language that supports Directshow, e.g. c#, vc , delphi, vb.
Requirements:
- Windows 98, Me, 2000, XP, Vista
- Microsoft DirectX Runtime
- Video display card installed";
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 = '';
}
}