var fDesc=new Array(); fDesc[0] = "BOM (Bill of Material) Extractor is a tool to extract information from Block Attributes and Dynamic blocks Properties of AutoCAD blocks available in the Drawing File. Sorting of BOM items will be done based on the sorting settings and also Items can be manually arranged and renumber the Item numbers."; 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 = ''; } }