var fDesc=new Array();
fDesc[0] = "Color-Helper Tools is a software easy to use and install, for those companies that deal with selling paint/color to customers.
Features :
- Instantly find the best matching color in your system
-Show the customer a sample BEFORE tinting
-Tint using reliable, established formulas
-Target color samples as small as 1/8"";
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 = '';
}
}