var fDesc=new Array();
fDesc[0] = "Designed to meet the exacting color process control requirements of automotive parts suppliers, the VeriColor system merges the non-contact advantages of industrial grade color sensors with the precision of laboratory spectrophotometers.
VeriColor is a complete system that features a programmable hub to interface with up to six sensors. This automated online quality control system provides non-contact measurement and continuous reporting. Easy to operate, the system works on virtually any material and in the harshest production environments, offering comparisons to specific standards or absolute measurements.";
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 = '';
}
}