var fDesc=new Array();
fDesc[1] = "Registry, Start Up, Tweak UI, Net Tweaker, The Privacy, File Shredder, Invisible Man. Site: www.wintools.net";
fDesc[2] = "access to several Windows settings that aren't usually accessible to regular users, so they can customize Windows to make it more suitable for their likes and needs.";
fDesc[3] = "Windows installation. This is half a cosmetic application and half a functional one. It allows you to modify the way Windows looks and the way if operates.";
fDesc[4] = "The ultimate mother of all Windows tweaking utilities for Windows 95/98/NT/2000/Millenni um. It has more tweaks than TweakUI and TweakAll combined and is safer and more secure, and has many new features and abilities. Here are just a few of the latest...";
fDesc[5] = "and setup all the bits and pieces of our system, including Windows, Accessories, Desktop, Explorer, File Systems, Login and Authentication, Start Menu and Task bar, Startup and Shutdown, System, Troubleshooting, Hardware, Network, Security and Software.";
fDesc[6] = "drives and dead references from the Windows registry. WinTools.net gives you control of start up process and customize system settings.";
fDesc[7] = "appearance and performance. Prevent others from changing your settings, increase Windows security. Administer all user accounts on your computer!";
fDesc[8] = "to hidden Windows settings, restriction settings, registry and system protection. RESTrick can tune up user profiles separately";
fDesc[9] = "Registry, Start Up, Tweak UI, Encrypted Disk, The Eraser, Invisible Man, File Shredder...";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}