var fDesc=new Array();
fDesc[1] = "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[2] = "definitely one of the best database managers for MySQL I ever seen. Manage multiple servers, databases, tables, indexes, stored procedures... Perform complex SQL queries, execute scripts, and more.";
fDesc[3] = "matching,\" \"Scan selected word,\" \"Fuzzy query,\" etc. The program can be activated as a stand alone program, or you can use it as a contextual utility to look for words pointed by your mouse.";
fDesc[4] = "submit your search to query many search engines and all the results will be showed in one summarizing window.";
fDesc[5] = "features like multiple result sets on tab sheets, query history, storing query \"bookmarks\", editing and comparing resultsets, SQL script debugging, and more.";
fDesc[6] = "as you please, to speed up DNS lookup, and at the same time to block unwanted websites. Network analyzing tools like 'Ping' and 'TraceRoute' helps in troubleshooting network related problems.";
fDesc[7] = "two different versions: a free sponsored one, wich can get really annoying launching over and over again your web browser to show you some advertisements; and a licensed version, at a very affordable price of 9,95 wich is worth to paid not to see the ads.";
fDesc[8] = "connects to all major databases and eases SQL editing and database design for a fraction of the cost of single-database solutions.";
fDesc[9] = "FlySpeed SQL Query is an easy-to-learn-and-oper ate graphical tool to work with data for all database users and developers. It works with almost any database server and allows you to build queries without needing deep knowledge of SQL syntax.";
fDesc[10] = "database. Visually create, edit, alter, drop, and view objects as well as import and export data. Browse objects with the database navigator.";
fDesc[11] = "objects in your Database run SQL statements display your data update your data build queries with the graphical query builder export your data compare your data - even across database types administer your databases - one frontend to different database types load data into your tables - even across database types plus many more features";
fDesc[12] = ", Firebird or InterBase. It's an all-in-one solution for monitoring, managing and performing queries to all your databases.";
fDesc[13] = "of tools for viewing and manipulating DICOM images, measuring and converting those measurements into several image formats and implementation of many other important DICOM service classes such as store, query, retrieve, send and move.";
fDesc[14] = "queries of DNS records, and check the results. The query types available are: A, WILDCARD, SOA, NS, MD, CNAME, MB, MR, NULL, WKS, PTR, HINFO, MINFO, MX, and TXT.";
fDesc[15] = "database, analyze the database, get some interesting statistics about your database like top 10 composers/actors in your collection and perform searches for missing cover scans, bad data for cleanup, profiles missing country of origin etc.";
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 = '...';
}
}