var fDesc=new Array();
fDesc[2] = "databases. You may select all or a subset of tables and views to synchronize.";
fDesc[3] = "database structures and data. SQL Delta also reports on structures and data including differences and exports reports to HTML, XML, PDF and Txt.";
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[6] = "database. Sync Schema generates the SQL DDL statements. Sync Data either transfers the rows or generates SQL DML statements.";
fDesc[8] = "databases. It's an ideal tool for Database Administrators (DBA) and Developers. With SCT you can take full control of your databases.";
fDesc[9] = "triggers and stored procedures. Database schemas tree-view makes the process more comfortable.";
fDesc[10] = "an individual object or the entire database objects within two databases, and synchronizes the database objects within two databases.";
fDesc[12] = "can compare the structures of Microsoft Access databases. As a result of the comparison a sql script is created.";
fDesc[15] = "for a choosen part or for the whole schema. Also compares table data. Very fast and easy to operate.";
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 = '...';
}
}