var fDesc=new Array();
fDesc[0] = "Select Special Cells for Microsoft Excel is a program that allows you to quickly find all cells that meet your criteria. This handy add-in extends the standard Microsoft Excel "Go to Special" dialog with essential options to select cells by value :
- Select cells based on a numeric value, find the max / min value in a range.
- Find dates within the specified range.
- Select cells of a particular type: constants, objects, comments, formulas or conditional formatting.";
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 = '';
}
}