var fDesc=new Array();
fDesc[1] = "that make it the preferred database for web developers. Although It has some known bugs. Critical bugs sometimes do not get fixed for long periods of time. Also it shows poor performance when used for Data Warehousing.";
fDesc[2] = "application programs (like Microsoft Excel) and many DBMS (database management systems), using a standard communication protocol (ODBC, Open DataBase Connectivity), and even cross-platform.";
fDesc[3] = "ease. It is easy to install and use. Mainly designed to create a test environment but powerful enough to handle the real thing.";
fDesc[4] = "predecessor, with updated features to take advantage of the last versions of MySQL Server. You will feel very comfortable using this tool.";
fDesc[5] = "Windows and most Unix platforms, including through such applications and programming environments such as Microsoft Access, Microsoft Excel, and Borland Delphi.";
fDesc[6] = "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[7] = "instruments for those users who are new to MySQL server and need only its basic functionality.";
fDesc[8] = "easily through a Web Browser (IE,Netscape,Opera etc.). It can help you share files with your friends and colleagues.";
fDesc[9] = "lot of features will make your work with any MySQL server versions as easy as it can be!";
fDesc[10] = ", Firebird or InterBase. It's an all-in-one solution for monitoring, managing and performing queries to all your databases.";
fDesc[11] = "works with any MySQL versions from 3.23 to the newest one and supports all of the latest features including MySQL triggers, views, stored procedures and functions, InnoDB foreign keys, Unicode data and so on.";
fDesc[12] = "for collecting time expenses, reporting and invoicing. Free support is available!";
fDesc[13] = "graphical interface and a lot of features will make your work with any MySQL server versions as easy as it can be!";
fDesc[14] = "ODBC, ADO; data import, ; data pump tool; test data generator; build in debugger; object templates; diagramming tools; reverse engineer an existing database into a physical data model; visualize relationships between tables in existing databases; and print diagrams.";
fDesc[15] = "statements, manage database user rights and manipulate data in different ways.";
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 = '...';
}
}