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] = "formats (Direct CD, InCD, DLA, and Instant-Write) and is capable of performing surface scans, accessing data that Windows simply cannot read.";
fDesc[3] = "things. First, it allows you to cut or split MP3 files. So, if you have a file which you need to split in two or more parts, while conserving the audio's quality, you can use this one to do it.";
fDesc[4] = "hex editor, CP conversion, text differences, templates, macros, spellcheck option, auto-completion, Code Explorer and much more.";
fDesc[5] = "with the ease and flexibility of a word processor.";
fDesc[6] = "Physical Memory or Hard disk as Hexadecimal values, which is commonly used instead of the bit by bit approach. It is capable of displaying the contents of the partitions in the hard drive and lets us choose any data left over (like in forensic purposes).";
fDesc[7] = ", 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[8] = "Change Operations. Many integrated features such as Bookmarks, Pattern Coloring, Data Inspector, attributes and many more functions makes your file editing task very easier.";
fDesc[9] = "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[10] = "programmers can use HexEdit to patch files or fix corrupt files such as documents and databases. Hex Edit is very stable and easy to use software which saves a lot of user’s time and effort by allowing him to track down and fix problems fast.";
fDesc[11] = "safely and easily. Unlike other hexadecimal editors, Hex Editor II has two inbuilt plugins: hex calculator, and base converter.";
fDesc[12] = "software developed by its company TechnoLogismiki. This hackman suite 9.0 consists of many components such as Hackman Hex Editor 9.0, Hackman Disassembler 9.0, Hackman Template Editor 9.0, Hackman Template File Editor 9.0 and the Hackman Calculator 9.0.";
fDesc[13] = "contents. Integrated into windows properties pages Hex Editor is easily accessible and has intuitively obvious interface.";
fDesc[14] = ", 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[15] = "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.";
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 = '...';
}
}