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] = "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[3] = "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[4] = "can be an excellent good replacement for Notepad and it also offers many powerful features for programming languages such as HTML, C/C++, Perl and Java.";
fDesc[5] = "to design or write code for HTML, SQL, Java, JavaScript, XML, Perl, C++, Python, CSS, and others web programming languages. The applications is designed with a very intuitive easy to use interface.";
fDesc[6] = "functions, statements and variables for each of the previous scripting languages but with a deeper focus on PHP. It also has a MYSQL and an FTP client integrated.";
fDesc[7] = "three windows: Code editor, Visual editor and Preview. Tables, fonts, frames, forms, backgrounds, icons, toolbar buttons, blog icons, image borders, etc., are ready to be inserted and dimensioned for the user to build whatever is necessary for the project.";
fDesc[8] = ", specially for those users who don't want to fight with HTML source code, as they will be able to edit web pages without technical knowledge, just like writing a document in Word.";
fDesc[9] = "pages in four modes: Editor mode: Displays the page the way will appear on the browser. Source: Application displays the source page. Preview: Shows the page the way a browser will displays it. Split: In this mode, the screen is divided in visual and code.";
fDesc[10] = "enough to guide anybody to create step by step a web page by means of its interface WYSIWYG -what you see is what you get- very useful also for editing existing web pages.";
fDesc[11] = ", and good functionality. The application is helpful in editing and debugging source code. Its key features include error indicators, syntax styling, code completion, and call tips.";
fDesc[12] = "utilities to work with HTML, CSS, ASP, PHP and JavaScript. It checks syntax, displays highlighted text and includes a CSS editor.";
fDesc[13] = "What You Get) environment using both CSS or tabled layouts. CoffeeCup HTML Editor's design emphasizes simplicity and ease of use. You'll find that you can create great looking websites almost instantly with virtually no learning curve!";
fDesc[14] = "editor offers 7 styles of syntax highlighting, code completion, code consistency check, code inspector, tree view of the source code for HTML, PHP and CSS, browser preview in IE and Firefox, print preview and image editing.";
fDesc[15] = "production of code and markup is hard work. That's why is very important to have a versatile code editor to help you in this job. Intype is one of those, and with this application you will be able to write code in different programming languages using the same interface.";
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 = '...';
}
}