var fDesc=new Array();
fDesc[1] = "written in the Java programming language. Once installed you won´t notice it. JRE is free to download, install and deploy, and all the related documentation can be found at http://www.sun.com.";
fDesc[2] = "for instance, games, chat applications in webpages, image visualization, among others, that were written with the Java scripting language.";
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] = "uninstalling programs, every change writes and deletes entries in the system registry. The deletion of entries will leave gaps in your Windows´ registry. Free Registry Defrag was made for solving this.";
fDesc[5] = "matching,\" \"Scan selected word,\" \"Fuzzy query,\" etc. The program can be activated as a stand alone program, or you can use it as a contextual utility to look for words pointed by your mouse.";
fDesc[6] = "creation of a full copy of a DVD movie, locating a VIDEO_TS folder on the hard drive and burn it to a DVD disc or select several movie titles and join them together and burning audio files onto a DVD.";
fDesc[7] = "present are caused by spyware and processes that are not supposed to be running and actually are. For example, they say that if you can't connect to a wireless network outside of home, it must probably be spyware.";
fDesc[8] = "any web page code. It doesnt depend on Internet pages, since it is an offline application with all the data included. The application installation comes with over 200 JavaScripts, ready to use and insert into a web page. Also HTML tested scripts for including into web page code.";
fDesc[9] = "removable media like streamer tapes etc. Some of its key features include: provision to support multiple drives, use of mouse and hotkeys to open and close by clicking on the icon, automatic eject while shutting down, simple installation.";
fDesc[10] = "code examples. The excellent BASIC editor is prepared for coloring the written syntax, comments, variables, etc. It also includes find, replace, undo, copy, cut, paste, restore, print the code, a font editor and a simple but useful Icon editor, math features, among other useful utilities.";
fDesc[11] = "enables those who understand the English language to examine and read the original Old and New testaments of the Holy Bible which were originally written in Hebrew – The Old, and Greek – The New";
fDesc[12] = "A combination of written text and video, covers the initial concepts about developing applications on C#. The approach of the lesson is to present computer programming as a fun activity. Available for free and only one prerequisite: Visual C# 2005 Express Edition.";
fDesc[13] = "Visual Basic language. This introductory lesson is a combination of written text and video which present computer programming as a fun activity. You can either take this lesson on-line from the MSDN web page, or you can download it to your computer.";
fDesc[14] = "well as improve your written skills and your performance in those all important meetings. The cheapest and most comfortable way to learn communicating.";
fDesc[15] = "Testament and Greek for the New one. It leverages all the features included in BibleMax, such as Search, Copy-Paste, and so on. This software is ideal for scholars, clerics and laypersons interested in reading the Bible in its original languages.";
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 = '...';
}
}