var fDesc=new Array(); fDesc[0] = "VBA Line Numbers with CodeLiner is an Office toolbar that allows you to add line numbers to your VBA Project macros. Line numbers are important for discovering the exact location of an error when using the built-in Erl () function. When you need an unobstructed view of your code, use this toolbar to clean-up the line numbers. When ready to debug errors or deploy to production, use the toolbar again to toggle on the code line numbers. Supported in Excel, Word and Access."; 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 = ''; } }