var fDesc=new Array();
fDesc[1] = "tools such as a Visual Resource Editor, powerful Win32 Disassembler, DLL Export Viewer, UPX and Upack Unpackers, and more.";
fDesc[2] = "original source code from the already compiler binary CLASS files that is Java Applets. Besides, it is a fully featured Java editor that uses graphic user interface with syntax coloring. But you do not need to have Java Virtual Machine (JVM) or other Java SDK pre-installed.";
fDesc[3] = "software developed by its company TechnoLogismiki. This hackman suite 9.0 consists of many components such as Hackman Hex Editor 9.0, Hackman Disassembler 9.0, Hackman Template Editor 9.0, Hackman Template File Editor 9.0 and the Hackman Calculator 9.0.";
fDesc[4] = "and memory, and use scripts and structures -- in a friendly GUI with zoom, multiple views, bookmarks, and drag-n-drop.";
fDesc[5] = "of methods which convert your .NET assembly (EXE & DLL) into processes which no existing tool can decompile.";
fDesc[6] = "technology. VBReFormer is a solution for recovering the design of each form and control, with all properties, values, all reference to external controls (ActiveX libraries), and all pictures. Then with VBReFormer you can obtain the necessary information to re-write the graphical design of your application... Design recovery means recovery of information about the user interface structure of the executable you want to analyze. VBReFormer succeed where others resources editors fails: editing the static design properties of Visual Basic 6 applications easily and without limitation of size, working directly on your binary (very useful for translating your application into another language for example). There is no limitation in size of design change because VBReFormer includes a \\"post-build compilation\\" technology which integrally re-build the binary code that holds the form design...";
fDesc[7] = "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[8] = "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[9] = ", protect and optimize your .NET assembly, minimize distribution size, increase performance & add powerful post-deployment debugging capabilities.";
fDesc[10] = ", 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.";
fDesc[11] = "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[13] = "protected program. The built-in disassembler and using a MAP file will allow you to quickly select the necessary parts of the co";
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 = '...';
}
}