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] = "hex editor, CP conversion, text differences, templates, macros, spellcheck option, auto-completion, Code Explorer and much more.";
fDesc[3] = "sharing needs. This easy-to-use tool with its lengthy list of capabilities to work with your digital images stands as a peer in the crowd. The tool is quite simple and free from a complicated interface unlike other similar tools.";
fDesc[4] = ", hex, decimal, float, double and binary data. This incredible program allows you to view, modify, analyze hexadecimal data and binary files, edit, exchange data with other applications through the clipboard, insert new data and delete existing data, as well as perform other editing actions.";
fDesc[5] = "You can learn how to work with Angel Writer in five minutes since it is very similar to Microsoft Word.";
fDesc[6] = "every file, organize the data in different ways and much more. Composed with a list of editing commands like delete, fill, find and replace it provides two types of editing modes.";
fDesc[7] = "contents. Integrated into windows properties pages Hex Editor is easily accessible and has intuitively obvious interface.";
fDesc[8] = "Easy-to-use and powerful, it provides many unique features making hex editing a breeze. Beginner's tutorial included.";
fDesc[9] = "anywhere! Features include MDI interface, multi-level undo & redo, extensive drag & drop support, blazing fast search and replace, much more.";
fDesc[10] = "tabbed interface is well structured and all its functions are organized in different menus. Besides, it has a project explorer that allows you to view, and edit any folder on your computer, and you will be able to edit more than one file at the same time.";
fDesc[11] = "used both as code and hex editor makes it unique and most useful as compared to other code and hex editor software in the market. The software can be integrated to the right context menu for all types of files.";
fDesc[12] = "colorful and easy to use. Fully functional - no disabled features. Supports hex, decimal, ascii, multiple export features. Built in search and stats.";
fDesc[14] = ", decimal, float, double and binary data. This incredible program allows you to view, modify, analyze hexadecimal data and binary files, edit, exchange data with other applications through the clipboard, insert new data and delete existing data, as well as perform other editing actions.";
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 = '...';
}
}