var fDesc=new Array();
fDesc[0] = "i-Catcher Video Server operates directly with supported multi-port video capture cards, and presents each of these ports as a single network video source, allowing a single computer to become the source of four video feeds per instance of i-Catcher Video Server.
You can run up to four instances, thereby increasing the number of sources a single computer can provide up to sixteen. You simply enter the host, port, and address of the specific camera into i-Catcher Sentry, Wildlife, or Console, and i-Catcher Video Server runs transparently like any other local or network video source.";
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 = '';
}
}