var fDesc=new Array(); fDesc[0] = "The Toolkit provides the means to keep an inventory of your hand tools and power tools. Simple and easy to use, it keeps up with all your tools including where you keep them, initial cost, current value, from whom and when they were purchased, serial numbers, model numbers, color, etc. Reports show inventory by Vendor, Tool Type, etc. Unlimited records of both hand tools and power tools."; 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 = ''; } }