var fDesc=new Array();
fDesc[0] = "CatSpy is a video surveillance application, which enables you to create a video surveillance based on cameras connected to your computer.
It includes complex motion detection, a pre-motion recording facility and uses all DirectX 9 compatible capture devices such as web cams or TV cards. The detected "motions" are recorded as videos on your PC using the flexible compression and record format features of CatSpy.";
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 = '';
}
}