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] = "used as background to create funny and interesting images. What is more, the program includes hundreds of masks to choose from, various clip arts, funny and sweet cartoon figures, frames, outlines and the possibility to include text to make your photos even more attractive and interesting.";
fDesc[3] = "tabbed interface. Search files, strip HTML tags and format text quickly. Use macros and collect text clips automatically on a paste board.";
fDesc[4] = "Notepad and WordPad to make a great word processor. The main idea behind Jarte is usability. So, the developers created an application that is both light-weight and powerful.";
fDesc[5] = "code and visual mode (powered by MS Internet Explorer). The user can be typing HTML code and see how that looks like switching to the visual mode, where the application will display the reault in a WYSIWYG manner.";
fDesc[6] = "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[7] = "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.";
fDesc[8] = "many platforms. The editor is expanded by plugins, which is good because it means the editor is just as functional as you need it to be, and it may possess any feature you desire.";
fDesc[9] = "You can learn how to work with Angel Writer in five minutes since it is very similar to Microsoft Word.";
fDesc[10] = "Features such as syntax highlighting and multiple language suppport makes it stand at par with the best text editors in its category.";
fDesc[11] = ", without frills! Notepad2 tries to follow this principle, it's a small, fast and free text editor with syntax highlighting for HTML and other common languages.";
fDesc[12] = "like) from template files and includes. Free software from the author of the Hal Spacejock series.";
fDesc[14] = "diagrams in Microsoft Word (and others). Unlimited undo/redo. Supports Windows Drag&Drop. High quality diagrams. No Code Generation.";
fDesc[15] = "Increase your revenues, localize your applications with LangAgent! LangAgent automates all localization/proofread ing tasks, generates tasks for translators, tracks changes. Add-in for MSVC enables you to apply LangAgent to your projects easily.";
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 = '...';
}
}