var fDesc=new Array(); fDesc[0] = "The multi-find add-in is a useful and powerful tool for finding text and values in Excel. The add-in performs multiple searches at a time, and is faster when searching for single items than Excel's Find function because you can refine your search to a selected range or column. If you use vlookups when searching for matches and comparing list items then this tool will save you a lot of time. The tool provides the option to highlight the items it finds. You can then use Excel's filter by colour to display and filter the coloured cells."; 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 = ''; } }