var fDesc=new Array();
fDesc[0] = "Kapci System is a color software that is accurate and most up-to-date color information system that quickly gets you to the right variant formula from the first time.
It has a user-friendly interface which provides:
- All formulas for Car manufacturer color and their variants
- Toners Info ( description - package )
- Toners direction ( face tone and flip tone )";
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 = '';
}
}