var fDesc=new Array();
fDesc[1] = "able to look for files in hard drives, Email attachments, local network or even the internet. The program adds itself to the taskbar where the user types the name of the files to look for.";
fDesc[2] = "experience with several tools and gadgets. In the tab Foxit messages you will find the latest information about Foxit announcements and upgrades. It includes its own search box powered by Google.com that enables you to surf the net easier and faster.";
fDesc[3] = "uninstallations, that might have left behind unnecessary trails. It cleans history and cache from Internet Explorer, Start Menu and Directory recent activity, Instant Messaging activuty, Windows Disk Error Temp Files, Windows Document History, Windows Temporary Files, etc.";
fDesc[4] = "looking for. Windows Desktop Search helps users quickly find and retrieve e-mail messages, documents, and many other file types located on their PC and corporate network. Windows Desktop Search provides a familiar, integrated, and convenient search experience for Windows users. Search index does not create privacy issues or device performance concerns. Windows Desktop Search integrates with other Microsoft Search technologies.";
fDesc[5] = "folder on your computer. You can type in a search filter to limit what files and folders are displayed. Everything only uses file and folder names and takes a few seconds to build its database. 1,000,000 files will take about 1 minute.";
fDesc[6] = "As usual in these type of applications, the program opens two separated windows, the left one for the local site (web site at the user PC) and the other (right hand) for the web site in the Internet server the user can open.";
fDesc[7] = "computers to find and remember where your files and folders are located on your system. There is a little drawback here. The application does not really do this automatically. You have to execute an included application to index your files.";
fDesc[8] = "launcher daily. I can't live without it. And I am glad to see applications like that for Windows. Executor is one of those applications. Executor allows you to start any application or document on your computer by typing its name.";
fDesc[9] = "Protector works with Internet Explorer, FireFox, AOL, Netscape and MSN. Your personal data will be safe while you enjoy navigating secure. Smart Protector works on all Windows systems.";
fDesc[10] = "can be able to explorer all the activities of your Windows, observe the working process of all applications, find out the system configuration problems, work on filters, select volumes, and much more.";
fDesc[11] = "directly on your browser. It allows you to search hundreds of websites at once, so you can view and select the deals more convenient to you, thus saving you time and money.";
fDesc[12] = "ones stored in your PC or LAN) in a blink of an eye. Supported formats: DOC, RTF, XLS, PPT, HTML, PDF, WPD, WRI, plain text documents and others.";
fDesc[14] = "time saving tool for developers, documenters, web designers and anyone who has to search and replace in a large number of files.";
fDesc[15] = "keyword about what you want to get info, select the target language, and it does the rest for you. The program also has the ability to highlight the words of you search to find what you are looking easier and faster.";
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 = '...';
}
}