var fDesc=new Array();
fDesc[1] = "Program often can not completely uninstall some applications and broken registry keys. Revo Uninstaller is a better and easier way for you to completely uninstall any unneeded application that standard Windows Add/Remove Program can't remove.";
fDesc[2] = "program is uninstalled, this is not deleted completely from your hard disk. There is where Uninstall Tool can help you to literally uninstall and delete all traces of the program you want to get rid of.";
fDesc[3] = "All you have to do is select a program from the list of installed applications. It is not possible to remove all the registry entries and files, but this tool does a good job on this matter.";
fDesc[4] = "there nothing junk lefts on your computer. Total Uninstall will show a list of programs and softwares installed on your computer, you just select the software you want to remove or uninstall from your computer and Total Uninstall will do the rest.";
fDesc[5] = "the smart Auto Find drag and drop function uninstalling has never been so easy. Uninstall programs even if they don't supply an uninstaller.";
fDesc[6] = "programs. It also works as a security tool to protect your data from unwanted hands and provides privacy for your personal computer work. The built-in Internet history eraser, cookie cleaner, add-ons manager and temporary Internet files cleaner keep your web browser running smoother.";
fDesc[7] = "appropriated application for completely cleaning all the programs traces. The user interface is very intuitive, easy to use, and the application is full of tutorials (assistants) for guiding users in all the tasks the program can perform.";
fDesc[8] = "from a computer. When ever you uninstall a software may be that software is not on your \"programs\" list anymore after removing it but it still leaves some files and many other trash registry entries but ZSoft Uninstaller can help you in keeping your computer clean and safe.";
fDesc[9] = "Pro. Both of them search the system and then show an initial window with all the installed programs with their corresponding icons so the user can recognize which program has to be uninstalled. It also can export this list for printing purposes.";
fDesc[10] = "getting slower - it's Windows that's getting clogged up. One of the main reasons for this is garbage left over by programs that don't get removed properly.";
fDesc[11] = "alike the Windows Add/Remove program, but it works faster. This free to use tool with simple yet powerful features will run on Windows 95/98/98SE/Me/2000/NT/ XP/2003/ and Vista.";
fDesc[12] = "drop function uninstalling has never been so easy. Uninstall programs even if they don't supply an uninstaller.";
fDesc[15] = "desired program. It is easier to use than the Control Panel's \"Add/Remove\", and allows to uninstall several applications at a time.";
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 = '...';
}
}