var fDesc=new Array();
fDesc[1] = "new, intuitive interface aimed to streamline your work flow. Also, many of the features that were dispersed in several menus, now are under the Office button.";
fDesc[2] = "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[3] = "and Windows' notepad is unavoidable. TextPad has a bunch of features that make it a great text editor for many types of tasks. It has all the basic features of a text editor. You can add text and format it in many ways.";
fDesc[4] = "features of a simple text editor as well as many more useful features which are helpful to web developers, web designers and Programmers as well.";
fDesc[5] = "changed between project versions, and then merging changes between versions. Features: Visual differencing and merging of text files Flexible editor with syntax highlighting Handles DOS, UNIX and MAC text file formats Unicode support Difference pane shows current difference in two vertical panes Location pane shows map of files compared Highlights differences inside lines File filters in directory diff Moved lines detection in file compare Shell Integration Rudimentary Visual SourceSafe and Rational ClearCase integration Archive file support using 7-zip Plugins Localizable interface via resource DLL HTML-based Manual";
fDesc[6] = "interface is really easy to use and intuitive, offering many customizable toolbars, sound effects, and useful hotkeys. It includes all standard text formatting features including spell check and auto-correction.";
fDesc[7] = "supports all kinds of Adobe PDF files and versions, and it is possible to open the converted file in any text editor so having Microsoft Word is not quite necessary. You can use the basic Windows text editor to open the resulting text file.";
fDesc[8] = "which are not available in the windows default text editor notepad. This editor fulfills almost all the necessary requirements for a text editor. The interface is user-friendly and easy to use.";
fDesc[9] = "installed as a replacement for Notepad or as a new installation. AkelPad brings interesting and practical improvements specially designed to help you in your documents editing.";
fDesc[10] = "excellent option to try. This small yet powerful application has many advanced editing features that will make a big difference next time you open and edit a text file.";
fDesc[11] = "tabbed interface. Search files, strip HTML tags and format text quickly. Use macros and collect text clips automatically on a paste board.";
fDesc[12] = "makes it better than other editors in its group. It is supported on Windows family operating systems. It supports many programming languages to serve the needs of programmers.";
fDesc[13] = "macros with your favorite script language and very large files of up to 248 GB or 2.1 billion lines.What is more, the program features a very simple and and intuitive user interface with tabbed windows.";
fDesc[14] = "provides you with range of features like formatting options, highlight keywords, background and font color, font styles, print option, save as GIF option, Auto copy and many more.";
fDesc[15] = "mobile devices to snap pictures of any text and then convert those pictures into a text file. The program even has a text-to-speech engine, for you to save the regignized text to WAV or MP3 formats.";
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 = '...';
}
}