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] = "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[3] = "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[4] = "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[5] = "databases. You may select all or a subset of tables and views to synchronize.";
fDesc[6] = "management capability, log shipping, and increased security and performance for SQL backup files";
fDesc[7] = "format. It can also perform a smart-rename of SQL objects, updating all references across the database at the same time.";
fDesc[9] = "MyGeneration supports Microsoft SQL, Oracle, IBM DB2, MySQL, PostgreSQL, Microsoft Access, FireBird, Interbase, SQLite and VistaDB.";
fDesc[10] = "Tool can repair mdf files of Microsoft SQL Server 7/2000/2005/2005 (64-bit) and save recovered data as SQL scripts or import into SQL server directly";
fDesc[11] = "SQL Maestro provides you with graphical user interface (GUI), which allows you to perform database operations easy and fast.";
fDesc[12] = ", FoxPro, Microsoft Excel documents, Interbase/Firebird, Lotus 1-2-3, MySQL, Oracle, Paradox, SQL Server, Text, ODBC, XM";
fDesc[13] = "high-quality SQL Server PHP scripts for the selected tables, views and queries for the further working with these objects through the web.";
fDesc[14] = "Server 2005 Express.";
fDesc[15] = "database objects using different criteria. This program can be very useful when you don't know in which table you should search since it will search one or more databases based on the given criteria.";
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 = '...';
}
}