var fDesc=new Array();
fDesc[1] = "features like multiple result sets on tab sheets, query history, storing query \"bookmarks\", editing and comparing resultsets, SQL script debugging, and more.";
fDesc[2] = "aggregated results for easy analysis Edit queries fast with an intuitive interface Cut out repetitive administration";
fDesc[3] = "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[4] = "of its features it provides option to update your databases structure. With Database Comparer you can compare your one database with other database, but comparing a database with SQL/DDL script is also easy.";
fDesc[5] = "others. You can also convert your DBF table into a SQL script and visually build advanced dat filtering rules.";
fDesc[6] = "SQL Maestro provides you with graphical user interface (GUI), which allows you to perform database operations easy and fast.";
fDesc[7] = "source. The script or file will migrate the table(s) and the records. Scripts comes in 5 formats ; MySql, MS SQL, Oracle, Pervasive and PostgreSQL.";
fDesc[8] = "command. 2.Run sql script. 3.Load/unload data from/to file. 5.Schedule and execute DB tasks. 6.Display fetch result vertically.";
fDesc[9] = "provides you with graphical easy-to-use user interface (GUI), which allows you to perform database operations easy and fast.";
fDesc[10] = "development. PostgreSQL Maestro provides you with graphical user interface (GUI), which allows you to perform database operations easy and fast.";
fDesc[11] = ", triggers, indexes etc. Both standard and user-defined data types are recovered. Supports MS SQL Server 6.5, 7.0, 2000, 2005.";
fDesc[12] = "to transfer your data to a new system. DBF to SQL Converter supports MS SQL, MySql, PostgreSQL and many more. The program comes with a wizard mode that will guide you on how to get your files converted.";
fDesc[13] = "Procedure, View, Trigger and Function of MS SQL SERVER? If yes, the DecrypSQL can help you.";
fDesc[14] = ", IB, DB2, MySQL, PostgreSQL, Firebird, Sybase ASE... Features: tabular displaying of SQL queries and more.";
fDesc[15] = "features color syntax highlighting, whole script or selected statements execution, and executing of SQL scripts or stored procedures.";
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 = '...';
}
}