var fDesc=new Array();
fDesc[0] = "Wade's Toolbox is a small and unobtrusive utility that installs a handy set of tools that will help you keep your computer in top shape. I go through the use of all the tools in detail in my Make your Computer Fit to Use series. I add tools to this all the time, so you will want to check back often.
The tools in the toolbox fall into three categories:
-Some are utilities I found on the web from such luminaries as SysInternals, Nirsoft and others.
-Some are just shortcuts to Windows utilities or tools that have always been on your machine but are either hard to find, or keep moving around.
-Some are tools I wrote myself.";
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 = '';
}
}