var fDesc=new Array();
fDesc[1] = ", 2000, XP and Vista. Its help file is really big due to the amount of information and reports you could do with it, however the most common usage is to troubleshoot stop errors (bluescreens of death)";
fDesc[2] = "Oracle Databases. Over time we have seen more and more business logic and application logic move into the Oracle Server, so that PL/SQL programming has become a significant part of the total development process. PL/SQL Developer focuses on ease of use, code quality and productivity, key advantages during Oracle application development. The following are major features of PL/SQL Developer: Powerful PL/SQL Editor With its Syntax Highlighting, SQL and PL/SQL help, Object Descriptions, Code Assistant, Compiler Hints, Refactoring, PL/SQL Beautifier, Code Contents, Code Hierarchy, Code Folding, Hyperlink Navigation, Macro Library and many other sophisticated features, the Unicode compliant editor will even appeal to the most demanding user. Information is automatically presented to you when you need it, or is at most one click away. Integrated Debugger The integrated debugger offers all...";
fDesc[3] = "great features, intended to be used in the development of medium open source web projects. It is available under Windows, Linux and Mac.";
fDesc[4] = ", based in the Z80 processor, created by Microsoft in the early 80´s. This \"standard\" was nearly unknown in the United States or England, but was widely used in Europe and Latin America. blueMSX allows you to run programs created for that architecture through your PC.";
fDesc[5] = "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[6] = "tools, powerful debugger and profiler, code beautifier, help integration, real time syntax checker, advanced keyboard templates and much more.";
fDesc[8] = "protocol and the web server, then HTTP Debugger is the program for you.";
fDesc[9] = "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[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] = "help System Administrators in security and performance issues. HTTP Debugger works on Windows 2000/XP/2003/Vista platforms.";
fDesc[12] = "or on local computer. You can run scripts in step-by-step mode and to trace values of any variables and script output.";
fDesc[13] = "form editors and debugging tools. Script Debugger IDE supports full client and server script debugging.";
fDesc[14] = "development and production environments. SQL Ultimate Debugger™ records database execution calls, providing detailed information on each traceable element (scalar variables, table variables, temporary tables, permanent tables) within executed database code such as stored procedures (SP's) and user-defined functions (UDF's), triggers. SQL Ultimate Debugger also provides performance indicators and statistics (call count, total, average and maximum execution time) for each line of executed database code. SQL Ultimate Debugger™ is the ultimate sql server tool for developers who work with SQL Server database code. Ultimate Debugger not only allows you to debug a specific execution with known parameters (as you normally do in Visual Studio) but it can monitor your database in a live environment. For example, you can debug procedures while they are executed many times per second by the...";
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 = '...';
}
}