var fDesc=new Array();
fDesc[1] = "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[2] = "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[3] = "interface very fresh we can handle all our multimedia resources with this program. After we install the program we must to configure it to get all multimedia files in the browser, and select the skin that we want to use.";
fDesc[4] = "developer to build great rich desktop applications. Watch out, you have to get a compiler and compile it in order to start programming. Read carefully the bundled instructions!";
fDesc[5] = "quick search that allows you to search through your programs in realtime, you can access it right from the top of the menu. It can also be used as a portable software and you can also carry it on your flash drive.";
fDesc[6] = "background transfers, shows file transfer progress and has a bookmarking feature. It also supports automatic resume of broken downloads/uploads.";
fDesc[7] = "repositories for everything, FreewareUpdater now offers a look at this wonderful world of Windows software. The main user interface is a two-pane window, with repositories on the left and applications on the right. All the software listed is freeware, and can be downloaded from within the program.";
fDesc[9] = "their job. It is free, open source and cross platform.";
fDesc[10] = "persistence, object-oriented replication, automatic schema recognition, 400K footprint. Ideal for embedded use and in realtime systems.";
fDesc[11] = ", SMS-Marketing and management reports. Now with a full AJAX admin tool.";
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 = '...';
}
}