var fDesc=new Array();
fDesc[0] = "Statesman Lite is Crystal Vision's PC control software which allows control and status monitoring of the Indigo remote-enabled boards from any PC on a network via Ethernet – allowing control from anywhere.
It provides control and status monitoring of all remote-enabled Crystal Vision products in the Indigo range and it's ideal for systems of any size - both large and small.
It's designed to work over Ethernet only and it can monitor boards by examining control values and virtual LED settings.";
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 = '';
}
}