var fDesc=new Array();
fDesc[0] = "ShellToys XP is a unique suite of context-menu shell extensions for Windows® 98/ME/2000/XP/2003. Right-click one or more files, a folder, the desktop, or the background of a window or open/save dialog to access 46 powerful new Windows tools!
Features:
41 great context menu extensions in one unique package! Plus five extra tools.
Customizable - show only the tools you want, and move your most-used tools to the main menu for quick access.
Don't like right-clicking? Assign hotkeys to your favorite tools for fast keyboard access.
Use ShellToys XP tools in folders, file dialogs, on the desktop, on the Start & Favorites menus - anywhere!";
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 = '';
}
}