var fDesc=new Array();
fDesc[0] = "CUBRID Manager (CM) is a database administration tool developed with DBAs in mind. It has a convenient and intuitive Graphical User Interface (GUI) and provides tools to manage the databases, brokers, execute queries and view their results, and many more.
Features:
Includes all versions of CUBRID JDBC Driver, thus you can connect to any CUBRID database.
Allows to create and manage unlimited number of databases and database volumes.
Allows to create and manage tables, columns, and rows, create views, triggers, serials, and stored procedures.";
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 = '';
}
}