var fDesc=new Array();
fDesc[1] = "discount coupons and deals on the Internet across various categories and products, it also has a handy feature to display alerts about end of items on your Ebay watchlist";
fDesc[2] = "after purchasing a Canon Digital. First of all we have to take photo with our camera opting for the RAW format instead of the JPEG or use both for comparison. By using this tool, after transferring the photographs to the computer, we can manage them in various ways.";
fDesc[3] = "of alternative e-commerce and travel vendors for other offers, and displaying them alongside any shopping or travel website.";
fDesc[4] = ", Impress (presentation), Calc (spreadsheet), Base (data base utility) and Draw (a drawing program). Same as Microsoft Office suites, the software calls the necessary program to accomplish the desired duty.";
fDesc[5] = "side by side, highlighting their differences. The interface is really simple with easy navigation by means of buttons and a drop-down list of lines.";
fDesc[6] = "Synchronise folders. Perform code reviews/audits. Work with folder trees containing thousands of files. Edit files in-place.";
fDesc[7] = "text, or among the changes occurred on the contents of two text files (text documents or even text directories), in a wide variety of formats (DOC, XLS, TXT, RTF, HTML, keeping its original formating), and show the differences.";
fDesc[8] = "different wizards for searching different types of files. Just point it to a folder or drive where you want to search for duplicate files and Duplicate File Remover will search for all duplicate files and show them in groups, along with their location.";
fDesc[9] = ", for CDRW verification, etc. Produces html reports and printout of folder comparison result.";
fDesc[10] = "classified as changes, deleted, non existing, and identical content. The variations are also color marked.";
fDesc[11] = "features that many users have been expecting for a long time from a comparison program.";
fDesc[12] = "and unique keywords, allowing to compare non-related files. Word-by-word comparison compares files with a common ancestor.";
fDesc[13] = "tasks between computers, (Laptop, Desktop, Workstation, Server, over network LAN, WAN, VPN, USB), and with any type of storage media including external Hard Disk, Zip disk, USB flash drive, CD-RW, DVD, NAS (Network Attached Storage).";
fDesc[14] = "have to insert some basic data (loan value, payment frequency, amount of periods, rate, and payments) and you will be able to get 135 results in a table so you can study payment amounts, interest rates, terms of the loans, and amounts borrowed and find the best terms for you.";
fDesc[15] = "keywords, allowing to compare non-related files. Word-by-word comparison compares files with a common ancestor";
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 = '...';
}
}