var fDesc=new Array();
fDesc[0] = "VSQL++ for Firebird is an database management software unrivaled for ensuring the greatest possible productivity in development and administration of Firebird database.
VSQL++ for Firebird provides the most convenient and efficient workflow, simplify database management to improve the efficiency and accuracy of the work. With VSQL++ for Firebird, you can quickly and easily create, organize, access and analysis Firebird database in easy way.
Firebird Objects Management
Objects: Database/Table/View/Procedure/UDF/Trigger/Generator/Domain/Exception etc.
Connection Management and Navigation
Data Viewer and Editor
Data Import/Export
SQL Processing
Server Security and Maintenance";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}