var fDesc=new Array();
fDesc[1] = "file formats as well as DVDs, VCDs, and other streaming protocols. It includes a large number of common encoding and decoding codecs like 3GP, AVI, FLV, etc.";
fDesc[2] = "download games to enjoy, and share them with others. You can actually share any digital file, including images, audio, video, software, documents, etc. The latest version supports BitTorrent protocol and Shoutcast radio stations.";
fDesc[3] = "tools as in Microsoft Office, Writer, Cal, Draw, etc but in a freeware version. It is easy to use and install and you can also open extensions such as .doc, .xl, etc.";
fDesc[4] = "source community, because in the past it was a very important drawback when trying to persuade IE users to switch to Firefox. Now any user can use Firefox as your default browser without losing any feature.";
fDesc[5] = "standards), Popular (used by many tools), Tested and Reliable (it has been available for years), easy to use for the final user (windows installer), Multi-platform (Windows NT/2000/XP/2003), commercial support in the website of CACE Technologies.";
fDesc[6] = "create, design, restore, or retouch images, plus many other actions that are usually carried out by important image editors. Paint.NET works faster compared to other image editors, being very powerful and easy to use at the same time.";
fDesc[7] = "compared to Tcl, Perl, Ruby, Scheme or Java. The language itself is a flexible powerhouse that can handle practically any problem domain.";
fDesc[8] = ", spreadsheets, presentations and more), and also create PDF files from a web page through an optional toolbar for the web browser. PDFCreator acts like a virtual printer who \"prints\" the selected document or web page into a PDF file, choosing from a complete set of options.";
fDesc[9] = "and buttons in just a few minutes. It uses a large number of dialogs to customize your work. Interface is highly customizable. It has excellent features like photo enhancement, fix perspective distortion and digital retouching techniques. GIMP is not a design suite but is free.";
fDesc[10] = "database that fits in a 2.5MB JAR file. Java DB 10.5.3.0 adds bug fixes plus message localizations to the features introduced in Java DB 10.5.1.";
fDesc[11] = "will work with any Win32 platform - from Windows 9X to XP. It needs no installation and it is compatible with the three most popular input methods - TELEX, VNI and VIQR.";
fDesc[12] = "takes a rather different approach than other applications. For starters, this is an open-source project, meaning that it is absolutely free and it accepts collaborations from anyone who wants to participate in the project.";
fDesc[13] = "that make it the preferred database for web developers. Although It has some known bugs. Critical bugs sometimes do not get fixed for long periods of time. Also it shows poor performance when used for Data Warehousing.";
fDesc[14] = "messengers. You can use MSN messenger, Yahoo! Messenger, ICQ, AIM, and more. The support for the messenger's features is not as great as the original applications.";
fDesc[15] = "Qualcomm, changed dramatically from previous versions and now is moving to the open source trying to maintain maximum compatibility, for both developers and users, with Thunderbird.";
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 = '...';
}
}