var fDesc=new Array();
fDesc[1] = "(using an integrated or external fingerprint reader). The application is compatible with Windows XP and Windows Vista, supports domain security integration and have a friendly user interface.";
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] = "using BitTorrent. It provides full proof protection to hard disk by supporting EMS buffering which prevents rapid writing and reading on hard disk. It is very simple to use.";
fDesc[4] = "and XML files to MySQL tables.";
fDesc[5] = "SQL/MSDE administration. It has minimal required set of instruments for those users who are new to MS SQL server and need only it's basic functionality.";
fDesc[6] = ", DBF, XML, TXT and CSV files to Microsoft SQL Server or MSDE tables.";
fDesc[7] = "Graphical User Interface (GUI) allows you to create/edit all PostgreSQL database objects in a most easy and simple way, run SQL scripts, manage users and administrate user privileges, visually build SQL queries, extract or print metadata, export/import data, view/edit BLOBs and many more services that will make your work with the PostgreSQL server as easy as it can be...";
fDesc[9] = "the most popular formats, including MS Access, MS Excel, MS Word, RTF, HTML, XML, PDF, TXT, CSV, DBF and others.";
fDesc[10] = "you to easily and simply create/edit all DBISAM database objects, run SQL scripts, visually build SQL queries and supplies many more features.";
fDesc[11] = "files to PostgreSQL tables.";
fDesc[12] = "formats, including MS Access, MS Excel, MS Word, RTF, HTML, XML, PDF, TXT, CSV, DBF and others.";
fDesc[13] = "It has minimal required set of instruments for those users who are new to PostgreSQL server and need only its basic functionality.";
fDesc[15] = "required set of instruments for those users who are new to PostgreSQL server and need only its basic functionality.";
fDesc[16] = "with DB2 versions 8.1 and 8.2 and supports all DB2 objects and data types.";
fDesc[17] = "available formats, including MS Access, MS Excel, MS Word, RTF, HTML, XML, PDF, TXT, CSV, DBF and others.";
fDesc[18] = ", DBF, XML, TXT and CSV files to Microsoft SQL Server or MSDE tables.";
fDesc[19] = "popular formats, including MS Access, MS Excel, MS Word, RTF, HTML, XML, PDF, TXT, CSV, DBF and others.";
fDesc[20] = "databases to most popular formats, including MS Access, MS Excel, MS Word, RTF, HTML, XML, PDF, TXT, CSV, DBF and others.";
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 = '...';
}
}