var fDesc=new Array();
fDesc[1] = "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[2] = "hex editor, CP conversion, text differences, templates, macros, spellcheck option, auto-completion, Code Explorer and much more.";
fDesc[3] = "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[4] = "notepad and don’t have high costly developer software. Presently Programmer’s Notepad supports for Ada, Assembler, Bash, Batch file, C, C++, c#, CSS, D, Diff, Docbook XML, Fortran 77, Fortran 95, HTML, IDL, Java, Javascript, LaTeX, Lua, Make, Matlab, Modula-2, etc.";
fDesc[5] = "features a very simple and intuitive user Tabbed multi-document interface which is comfortable both for beginners and experienced programmers, making PHP development easy and productive.";
fDesc[6] = "themselves. Hippo Edit 1.3 is a compact and lightweight tool for editing of the source code or small text documents. It can be used both as a normal text editor as well as an IDE for editing your programs or web pages.";
fDesc[7] = "machine. Use our unique Binary Templates technology to understand any binary format. Includes a whole range of powerful analysis and editing tools.";
fDesc[8] = "source code. It is an advanced tool supporting syntax highlighting, Code Templates, unlimited text size, etc.";
fDesc[9] = "code easily and quickly.";
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] = "and other languages source code. It is an advanced tool supporting syntax highlighting, Code Templates, unlimited text size, etc.";
fDesc[12] = "lot more. Powerful yet very easy to use for thenovice and experienced power user. The userconfigurable syntax highlighting (coloring) ispre-conf...";
fDesc[13] = "you're unlikely to find elsewhere. ED goes beyond editing with its Source Database Engine, unmatched Visual File Compare, Compiler support";
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 = '...';
}
}