var fDesc=new Array();
fDesc[0] = "CutFour DV is a realtime live DV/DVCAM video mixing software.
Features:
- Easy to use live video mixing software to mix up to four DV/DVCAM camcorder inputs with digital firewire Ieee1394 connection
- Preview for all video input channels without external video monitors
- Web video streaming with any streaming software in the same desktop PC
- Images and titles over video with alpha channel support
- Program channel capture to DV AVI video format
- Four channel color corrector
- Seven picture in picture channels
- New advanced user interface
- Screen capture virtual input to capture Windows desktop area
- Still Image input channel
- Professional digital DV video quality without analog video cables";
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 = '';
}
}