var fDesc=new Array();
fDesc[1] = "enables organizations to reliably manage mission-critical information and confidently run today’s increasingly complex business applications. SQL Server 2005 allows companies to gain greater insight from their business information and achieve faster results for a competitive advantage.";
fDesc[2] = "database that fits in a 2.5MB JAR file. Java DB 10.5.3.0 adds bug fixes plus message localizations to the features introduced in Java DB 10.5.1.";
fDesc[3] = "MySQL Administrator 1.2.9 MySQL Query Browser 1.2.9 rc MySQL Migration Toolkit 1.1.9 MySQL Workbench 1.1.9 alpha.";
fDesc[4] = "to non professionals developers, but is built with the same technology than the line of SQL Server 2005. This version is more complete that the Jet Version, or the MSDE version.";
fDesc[5] = "includes many improved and enhanced features. However, there can be some behavioral changes as this new release includes certain functionalities that differ from the previous versions. The latest update for Microsoft Visual FoxPro 9.0 is Service Pack 2 which is free.";
fDesc[6] = "save all your product keys to a text file for printing or copy the serial number to your windows clipboard.";
fDesc[7] = "program includes many tools and options that will help you to browse multiple databases and connect them. It can import and export data from/to SQL files, SQLite files, ODBC tables, Excel spreadsheets, Microsoft Access, plain text files, and other resources.";
fDesc[8] = "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[9] = "to design or write code for HTML, SQL, Java, JavaScript, XML, Perl, C++, Python, CSS, and others web programming languages. The applications is designed with a very intuitive easy to use interface.";
fDesc[10] = "can see new features: Table Editor. Data filtration is now available when connecting through HTTP tunneling. Unicode is now displayed properly in the DB Explorer. Partial support of OpenGIS fields is implemented.";
fDesc[11] = "works with any SQL Server versions from 7 to 2005 and supports all of the latest SQL Server features.";
fDesc[12] = "makes it possible for developers, designers, bloggers, etc., to easily create and manage MySQL databases. The program's interface proves to be very smart and user-friendly, with many tools and helpful wizards.";
fDesc[13] = "Golden is a powerful tool which allows high speed ascii import/export that can handle millions of records. Golden provides you with range of features like point and click SQLBuilder, result set editing and export to Excel, CSV files and XML";
fDesc[14] = "and more. It has a nice user interface. and allows easy access and switching of saved connections through a drop down menu.";
fDesc[15] = "compliant databases, such as Oracle, DB2, SQL Server, Sybase, etc., and edit SQL queries and scripts with code completion, syntax highlighting, SQL formatting, plus other useful features that allow you to work more efficiently.";
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 = '...';
}
}