var fDesc=new Array(); fDesc[0] = "TableViews, a Microsoft Excel Add-in, allows to save and restore table views.
A table view is a set of visible columns and applied auto-filters.
It is a convenient and time savable feature. You can save time for yours, your colleagues and your boss also. When you hide unnecessary columns and apply auto-filters you build a view. You can save this view with a convenient name and apply it in the future by one click."; 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 = ''; } }