var fDesc=new Array();
fDesc[0] = "DBMaker is a program built with the latest design concepts in mind to create an efficient, easy to use, powerful database engine. The native ODBC interface and ANSI SQL-99 support allows you to develop with any of the tools like Visual C , Visual Basic, Delphi, AcuBench, and CASEMaker's Totem. Moreover, the DBMaker JDBC Driver enables database access for Java applications and applets.";
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 = '';
}
}