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] = "can see new features: Table Editor. Data filtration is now available when connecting through HTTP tunneling. Unicode is now displayed properly in the DB Explorer. Partial support of OpenGIS fields is implemented.";
fDesc[5] = "works with any SQL Server versions from 7 to 2005 and supports all of the latest SQL Server features.";
fDesc[6] = "instruments for those users who are new to MySQL server and need only its basic functionality.";
fDesc[8] = "lot of features will make your work with any MySQL server versions as easy as it can be!";
fDesc[9] = "from your PC to a GSM phone. Send using modem or Phone (connected through cable/IR/bluetooth) or Internet.";
fDesc[10] = "required set of instruments for those users who are new to InterBase server and needs only its basic functionality.";
fDesc[12] = "interface and a lot of features will make your work with InterBase and Firebird as easy as it can be!";
fDesc[14] = "works with any MySQL versions from 3.23 to the newest one and supports all of the latest features including MySQL triggers, views, stored procedures and functions, InnoDB foreign keys, Unicode data and so on.";
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 = '...';
}
}