var fDesc=new Array();
fDesc[1] = "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[2] = "set the program to scan the whole registry, just the applications, or search for threats that may affect our privacy. This program can perform automatic registry backups, and automatic errors repair.";
fDesc[3] = "and quarantine the infected files for immediate protection. This incredible program offers a complete PC scanning, including running processes, registry entries, files and folders.";
fDesc[4] = "phrase related to the file name or application name and Quickfind shows all the related files to that name or word.Just double click the desired file and Quickfind will launch it immediately.Quickfind also enables the user to open web addresses added to the favorites .";
fDesc[5] = "and essential tool in keeping your registry defragmented. As a result, the Registry becomes compact and small, greatly improving your computer performance.";
fDesc[6] = ", the programs that are not deleted fully, corrupt files and wrong pathways. Quad removes the useless registry details, defragments disk and makes the computer work faster and with optimum efficiency.";
fDesc[7] = "full uninstall capabilities; integrated file compression, and support for installing shared files and OCX's; creating of Start Menu icons,...";
fDesc[8] = "tools such as a Visual Resource Editor, powerful Win32 Disassembler, DLL Export Viewer, UPX and Upack Unpackers, and more.";
fDesc[9] = "It supports all Windows operating system, from 95 to Vista. It has a friendly interface and it´s easy to use even for average users.";
fDesc[10] = ", there is a real possibility to decompile it into the source code and VB Decompiler takes advantage of this situation and works on all kinds of programs like .exe, .dll as well as .ocx.";
fDesc[11] = "files, which contain icons. Extracted icons can be printed or saved to ICO, BMP, JPEG, EMF, HTML, and DBF files.";
fDesc[12] = ", JPG, TIF, WMF, EMF, PNG, PCX, J2K, TGA, RAS and ICO files.The utility supports different icon sizes and colors such as Monochrome (1 bit), 16 Colors (4 bits), Grayscale (8 bits), 256 Colors (8 bits), etc.";
fDesc[13] = "the data encapsulated within the compiled file. The application can provide an accurate framework on which the user can easily rebuild the VB application and it can identify all the source files, and recover the project file.";
fDesc[14] = "(including Microsoft Word, Microsoft Excel, Microsoft PowerPoint, Microsoft Project, and Microsoft Visio documents) in a custom form or Web page.";
fDesc[15] = ", Project and Visio";
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 = '...';
}
}