var fDesc=new Array();
fDesc[1] = "formats in minutes. It's fully customizable as it enables users to adjust the compression and encoder rates, resolution, and frame rate of the output files, plus set the output size. It even allows to preview the output file before converting.";
fDesc[2] = "very good partition manager considering its capabilities. It has all the components / functions required for a partition manager. It gives a wizard like interface when the program starts. There is also an advanced version for experienced users.";
fDesc[3] = "CD-R/CD-RW/DVD-R/DVD+ R/DVD-RW/DVD+RW/DVD-RA M (SCSI-IDE/EIDE-USB), Multi languages, ISO support";
fDesc[4] = "tool is a must-have for teachers and students of these languages, you have everything you need to a very quick start.";
fDesc[5] = "software was designed for Java programmers: both for beginners and for professionals. The interface is much similar to Microsoft Visual Studio. As compared with other Java-based editors, JCreator doesn’t include unnecessary features, but the ones you will use every time.";
fDesc[6] = "Eclipse. With over 1,360,000 downloads to date, thousands of developers a day are discovering why Aptana Studio is now the leading choice of web professionals everywhere.";
fDesc[7] = "account. UTF-8 support is the most valuable feature, which will encourage programmers to write strict html code; perhaps in other versions ISO-8859 support may be added, which will be a great advancement.";
fDesc[8] = "Adobe Flex SDK, AS2 Project management offering Swfmill and Mtasc integration with the help of a portable standalone command line tool.";
fDesc[9] = "the features which you may found in any state of the art market leader data recovery software. Data LifeSaver has quality to recover data from IDE, SCSI and SATA types of hard disks. Data LifeSaver has full support to recover data from USB drives.";
fDesc[10] = "Application developers. It stands out in the crowd of other IDEs and PHP editors as it has the most powerful and useful plugins and developers tools which are always helpful in developing present day web applications rapidly and effectively.";
fDesc[11] = "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[12] = "most complete IDEs of the market: with ZendStudio you can improve your skills and enhance your productivity in every stages of your PHP project.";
fDesc[13] = ", project management, spell checking, a table wizard, BibTeX support, Unicode support, different toolbars and user configuration options. This is NOT a LaTeX system; an additional LaTeX package is required.";
fDesc[14] = "and editing tools. The DX Studio was the first product made that offered a range of tools in a single IDE.";
fDesc[15] = "program supports S-ATA (SATA), IDE (E-IDE), SCSI, USB and FIREWIRE interfaces. It fully support LBA-48 drives. Hard Disk Wipe Tool can format Maxtor, Hitachi, Seagate, Samsung, Toshiba, Fujitsu, IBM, Quantum and Western Digital drives.";
fDesc[16] = "the PHP interpreter and the PHP documentation, PHP Coder gives you a time-saving Development Interface. And it is quite small compared to other language's IDEs and loads pretty fast. And the best, it's FREE.";
fDesc[17] = "writing/modifying the codes, an IDE and an Interpreter. The programs written in this language are executed in the application's terminal window, which resembles old DOS based programming languages such as GW Basic, Pascal and Turbo C.";
fDesc[18] = "compiler, assembler, disassembler and debugger. This application has features like a simulation interface which shows the whole processor structure along with its interrupts interface in a graphical form. It has an in-built memory editor for64K external memory.";
fDesc[19] = "90S family which are bundled with emulator, assembler, disassembler, Basic compiler, and debugger. The application features a smart AVR 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[20] = ", etc. The program is very simple to use and is a good one for those beginning to do 16-bit microcontroller programming. It has all the features to edit and run an assembly language program.";
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 = '...';
}
}