var fDesc=new Array(); fDesc[0] = "This add-in allows you to view exactly what is in a cell, including hidden and special characters. Display in either Decimal or Hex. Quite often when doing copy and paste operations from a non-Excel source such as a web page, you will end up with special control characters in the worksheet cell. These characters are often not visible in a cell but can affect cell formatting and arithmetic and lookup formulas."; 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 = ''; } }