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] = "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[3] = "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[4] = "anyone could modify, use, and tinker with. It is developed under the GNU General Public License by many people scattered around the globe. The core developers are:";
fDesc[5] = "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[6] = "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[8] = "used by anyone who wants an easy way to imagine, create, and publish in 3D. It is ideal for you to use as modeling editor for your home additions, gam";
fDesc[9] = "background transfers, shows file transfer progress and has a bookmarking feature. It also supports automatic resume of broken downloads/uploads.";
fDesc[10] = "their job. It is free, open source and cross platform.";
fDesc[11] = "persistence, object-oriented replication, automatic schema recognition, 400K footprint. Ideal for embedded use and in realtime systems.";
fDesc[12] = ", SMS-Marketing and management reports. Now with a full AJAX admin tool.";
fDesc[14] = "dictionaries in the SDB, XDXF, DSL, MOVA or StarDict formats. You can download those dictionaries from the SimpleDict site in http://simpledict.net2 3.net/dicts.html. This page will also provide you with links to other sites with thousands of dictionaries available for downloading.";
fDesc[15] = "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[18] = "Anyone can now build GREAT LOOKING buttons in seconds on both the Mac and PC. Now includes Icons and Effects!";
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 = '...';
}
}