var fDesc=new Array();
fDesc[0] = "CamControl LITE is a single user solution for operation, alarm verification and configuration of up to 6000 VideoGateways and storage of all transmitted images in a PC receiver archive. The program is capable of automatic recording of all received video images to individually configurable PC receiver archive.";
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 = '';
}
}