var fDesc=new Array(); fDesc[0] = "Checker inspects parts on a moving production line. Checker is for inspection jobs that are hard to solve with tools like photodetectors, but which don't require the full power of a general-purpose vision system.

Checker can check:

-that a can or bottle has a label on it.
-that a bottle has a cap on it.
-that pills are present in all compartments of a blister pack.
-that a date code is printed on a package.
-that a manufactured switch is in the proper position.
-that a printed logo is present.
-that a nut is on a screw."; 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 = ''; } }