var fDesc=new Array();
fDesc[0] = "TVactive controls your computer TV tuner device, and adds a timer and video capture to create a software VCR. It saves video files in compressed Windows Media format.
Features:
- Easy-to-use controls.
- Built-in timer, much easier to use than a hardware VCR.
- Built-in direct-to-disk recorder with compression capability.
- Programmed station buttons can display call-letters of TV station
- Context-sensitive help, taskbar tray icon option, optional menu, audio file browser, and many other options.";
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 = '';
}
}