var fDesc=new Array();
fDesc[1] = "other activities. It lets the user quickly find the stuff that helps them perform tasks faster like files, e-mails, contacts, music, presentations, etc.";
fDesc[2] = "to search and the application selects the best engines to perform the task and search all of them at once. In addition, the application offers different search criteria for repetitive searches, such as \"buy music\", \"buy books\", Newsgroups, etc.";
fDesc[3] = "consulting targeted search engines and information sources on the Web. The Quick Search allows you to search for an expression in a wide range of search engines.";
fDesc[4] = "installed. CDS 2 adds a toolbar to the system tray, and an icon. While running, the program will index the content of your hard disk in the background, to perform searches quickly.";
fDesc[5] = "organizations. This innovative software will make things easier for staff/members to search for files, emails, contacts, favorites, history, music, pictures, videos, etc., in their computer, on the Web. Now it is possible to find Lotus Notes items.";
fDesc[6] = "without missing any important information. Using sophisticated statistical and linguistic algorithms, it pinpoints the key concepts and extracts the most relevant sentences, resulting in a summary that is a shorter, condensed version of the original text. Copernic Summarizer can analyse a text of any length, on any subject, in any one of four languages, and create a summary as short or as long as you want it to be. It can summarize Word documents, Web pages, PDF files, e-mail messages and even text from the Windows Clipboard. Thanks to the patent pending WebEssence technology, which automatically removes from Web pages irrelevant text and content (such as advertisements and navigation items), Copernic Summarizer focuses on the essential text elements, which results in even more relevant summaries. Once summaries have been generated, they can be printed, saved (in plain text, RTF, HTML...";
fDesc[8] = "and different specialized information sources, applying its own search management tools. Copernic Agent Personal allows you to customize your search, finding and keeping only relevant information.";
fDesc[9] = "type of data in his/her computer or on the Internet. We are allowed to search by the following categories: The Web, All, Files, Emails, Contacts, Favorites, History, Music, Pictures and Videos. It is possible to refine the search.";
fDesc[10] = "search are displayed in four different ways: standard, compact, detailed and custom. Duplicates are filtered by the application and the user won't see them, saving time.";
fDesc[11] = "files together and gives you easy-to-use tools, like file encryption, pdf conversion, file shredding, and file preview.";
fDesc[13] = "Internet. Works with browsers as Firefox , Yahoo, AOL, IE, MSN Explorer, Opera, Juno and Netscape.";
fDesc[14] = "tool for anyone who uses the Internet. Works with browsers as AOL, IE, MSN Explorer, Opera, Juno and Netscape.";
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 = '...';
}
}