var fDesc=new Array();
fDesc[1] = "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[2] = "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[3] = "supports several languages. Running in the MS Windows environment, its use is governed by GPL License. Based on a powerful editing component Scintilla, Notepad++ is written in C++ and uses pure Win32 API and STL which ensures a higher execution speed and smaller program size. By optimizing as many routines as possible without losing user friendliness, Notepad++ is trying to reduce the world carbon dioxide emissions. When using less CPU power, the PC can throttle down and reduce power consumption, resulting in a greener environment.";
fDesc[4] = "to create your own icon for your program. Set an attractive system tray icon. You don't need to dig into native codes to do that. Well, that's Java.Expect much more feature soon.";
fDesc[5] = "everything Nero. The Nero Burning suite comes with many applications that range from CD/DVD burners, CD/DVD copying, drive speed analysis, image burning, and so one.";
fDesc[6] = "aspects of the same project while easily combining discrete elements into complex shots, animations, or game levels. The software also boasts a redesigned renderer that retains the speed of its predecessor while delivering superior results and simplifying the process of creating stunningly realistic images, scenes, and special effects. Other key enhancements include nestable external references, application-wide scripting and macro recording, a customizable work environment, powerful organic modeling capabilities, and a host of other new features that accelerate the creation of digital content.";
fDesc[7] = "picture quality even at high compression ratios. Xvid is similar to DivX, since it is an open source project, distributed under the terms of the GNU General Public License (GPL). That means that it´s free to use, and everyone can contribute to its development.";
fDesc[8] = "and MacOS. Developers can use this great tool to design software using Java SE/FX, Java, Ruby, C/C++, and PHP. It is sponsored by Sun Microsystems and is very powerful thanks to the contribution of thousands of users.";
fDesc[9] = "languages C/C++. It uses Mingw port of GCC (GNU Compiler Collection) as it's compiler. Dev-C++ can be easily used in combination with Cygwin or any other GCC based compiler.";
fDesc[10] = "It includes templates and tutorials to help you do your homework in Microsoft Office. Includes Microsoft Math for doing mathematical calculations including solving equations and plotting graphs, calculus, etc. Dictionary and Thesaurus helps learn foreign languages too.";
fDesc[11] = "(including dual layer support) discs, erasing rewritable discs, direct copy disc to disc, etc. Data projects contain directories, folders and files. Audio discs to be played on CD players, portable players and computers CD drives. Mixed projects contain data and audio files.";
fDesc[12] = "advantage of this shell integration is that not only web or software developers can use it but all the people can use it, like translators, doc writers,...";
fDesc[13] = "keyboard as accurately as possible. The game is pretty much a port of games like Guitar Hero and Rock Band, but for the PC, Mac and Linux. That is one of its greatest features: that no matter what computer you have, you can play it.";
fDesc[14] = "users to share their processing power with the SETI@HOME initiative. It used volunteers' computers to analyze recordings of radio transmissions from outer space. However, nowadays, several projects can be added to the client.";
fDesc[15] = "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[16] = "in the latest versions. The emulator is capable of running Playstation 2 games at decent frame rates and it emulates every single feature of the original PS2 console.";
fDesc[18] = "ease. It is easy to install and use. Mainly designed to create a test environment but powerful enough to handle the real thing.";
fDesc[19] = "a few words in it. On top of that, users can download a number of other free dictionaries from the website and use them in conjunction with the application.";
fDesc[20] = "tool is a must-have for teachers and students of these languages, you have everything you need to a very quick start.";
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 = '...';
}
}