var fDesc=new Array();
fDesc[0] = "The iuVCS is a successor of the iuVCR video capture utility. It is based on the totally new capture engine and has new user interface. There are two variants: Standard and Deluxe. Each variant exists in two versions: 32-bit and 64-bit for 64-bit Windows XP and Vista as well.
System requirements:
- Windows 2000, XP or Vista
- DirectX 9 or higher.
- Processor: Pentium III or higher
- 256Mb RAM.
- DirectX compatible sound card.
- DirectX compatible graphics adapter card.
- PCI, IEEE-1394 or USB video capture device.
- Free HDD space: 10 Mb for program files";
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 = '';
}
}