var fDesc=new Array();
fDesc[1] = "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[2] = "(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[3] = "works with any SQL Server versions from 7 to 2005 and supports all of the latest SQL Server features.";
fDesc[4] = "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[7] = "differences in compared tables and execute an automatically generated script to eliminate these differences.";
fDesc[8] = "instruments for those users who are new to MySQL server and need only its basic functionality.";
fDesc[9] = "lot of features will make your work with any MySQL server versions as easy as it can be!";
fDesc[10] = "required set of instruments for those users who are new to InterBase server and needs only its basic functionality.";
fDesc[11] = "Manager 2005 works with any SQL Server versions from 7 to 2005 and supports all of the latest SQL Server features.";
fDesc[12] = "required set of instruments for those users who are new to MySQL server and need only its basic functionality.";
fDesc[13] = "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[14] = "of instruments for those users who are new to PostgreSQL server and need only its basic functionality.";
fDesc[15] = ", DBF, XML, TXT and CSV files to Microsoft SQL Server or MSDE tables.";
fDesc[16] = "and CSV files to PostgreSQL tables.";
fDesc[17] = "MS Access, MS Excel, MS Word, RTF, HTML, XML, PDF, TXT, CSV, DBF and others.";
fDesc[18] = "You can view all the differences in compared tables and execute an automatically generated script to eliminate these differences.";
fDesc[19] = "differences in compared tables and execute an automatically generated script to eliminate these differences.";
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 = '...';
}
}