var fDesc=new Array();
fDesc[0] = "Quick Tools for Microsoft® Excel® is a set of 10 utilities that cut the clicks and greatly simplify your daily tasks. They make common operations not only quicker and easier, but actually enjoyable.
Features :
- Moving columns in your table by drag-n-dropping
- Deleting all empty rows, columns and worksheets in a table
- Quickly filtering data by selection
- Applying any basic math operation to a range
- Copying cell/range address";
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 = '';
}
}