var fDesc=new Array();
fDesc[0] = "LCIC-WIM - Very High speed, high resolution Load Cell Interface with USB& RS-232/485 interface, 8 I/O, analog output and very powerful monitoring software which allows analyzing load cell signals in a rate of 15,000 per second.
The LCIC-WIM with the embedded Checkweigher application, was designed to function as a Universal High- speed In-Motion Checkweigher controller.
It will work as a stand-alone controller or, might be connected to a PC running our Checkweigher Monitoring program that provides the user with much more details like: statistics, histogram, history etc.";
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 = '';
}
}