var fDesc=new Array();
fDesc[0] = "True DBGrid Pro completely manages the database interface, allowing developers to concentrate on important application-specific tasks. True DBGrid Pro can also be used in unbound or storage mode with a programmer's own data source.
True DBGrid Pro allows end-users to browse, edit, add, and delete data in a tabular format. True DBGrid includes dozens of advanced data access, data presentation, and UI features.
ComponentOne True DBGrid Pro - a neat little piece of software that enables you to manage data in a tabular format.";
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 = '';
}
}