var fDesc=new Array();
fDesc[1] = "for free.You can use the FLV Player standalone, without the support of flash authoring tools.";
fDesc[2] = "offers easy burning wizards separately for Audio disk, Data disk, Copy disk and Erase disk. CDBurnerXP also offers ISO image burning wizard that can be used to burn an ISO image to disk, without NERO Burning tools.";
fDesc[3] = "and MacOS. Developers can use this great tool to design software using Java SE/FX, Java, Ruby, C/C++, and PHP. It is sponsored by Sun Microsystems and is very powerful thanks to the contribution of thousands of users.";
fDesc[4] = "languages C/C++. It uses Mingw port of GCC (GNU Compiler Collection) as it's compiler. Dev-C++ can be easily used in combination with Cygwin or any other GCC based compiler.";
fDesc[5] = "Project Management, Project Templates, Code Completion, Debubber Interface and an Editor with Syntax Highlighting. It also has some wizards. The User Interface is highly customizable. JCreator will allow you to compile or run your Java program.";
fDesc[6] = "freely.";
fDesc[7] = "great features, intended to be used in the development of medium open source web projects. It is available under Windows, Linux and Mac.";
fDesc[8] = "experience by delivering a Java EE/J2EE, database, RAD, UML, POJOs, Web 2.0/AJAX, and rich-client development environment.";
fDesc[9] = "Pascal programming. It's similar to Delphi IDE when Borland was in charge of it. It provides the possibility to import Delphi files, like units, projects and packages. Its GUI is friendly and easy to use. It runs in Windows, Linux, FreeBSD and MAC OS platforms.";
fDesc[10] = "These functions are available in a user friendly graphical interface. The program helps the user to view the internal microcontroller architecture. It has features such as FLASH program memory editor, variable simulation rate and a powerful PIC basic compiler.";
fDesc[11] = "debug them and preview the result of execution. The program's editor has syntax color coding and a nice class browser. The program has 14 language files.";
fDesc[12] = "WINDOWS) and also contains wxWidgets for creating forms and dialog based applications. Moreover,it comes with OpenGL as well, making it a breeze to program 2D/3D applications easy.It comes with a good debugger, so that you may track down where you went wrong. To top it all, it's free!.";
fDesc[13] = "Environment (IDE) specifically for the well-known Python programming language. But there is a major inconvenience: you need to have Python installed in order to use it.";
fDesc[14] = "assembler, disassembler and debugger. The application features a PIC18 basic compiler which is bundled with a smart basic source editor. The memory editor tool is available for FLASH memory and EPROM data memory.";
fDesc[15] = ", assembler, disassembler and debugger. Z80 Simulator IDE has extensive program options and consists of a memory editor for 64k memory. It also features a conversion tool for IEEE 754 single precision floating point numbers format.";
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 = '...';
}
}