var fDesc=new Array();
fDesc[0] = "Oracle Maestro is the premier Oracle admin tool for database management, control and development. Key features include:
Support for all the Oracle versions from 8i to 11g
Easy database object management
Database Designer
PL/SQL Debugger
Comfortable access to Oracle security features
Data management: editing, grouping, sorting and filtering abilities
Handy SQL Editor with code folding and multi-threading
Visual Query Builder with support for subqueries and UNIONS
Data export/import to/from the most popular formats
Powerful BLOB Viewer/Editor
The application also provides you with a powerful set of tools to edit and execute SQL scripts, build visual diagrams for numeric data, compose OLAP cubes, and much more.";
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 = '';
}
}