var fDesc=new Array();
fDesc[0] = "MyDbf Studio is a multiplatform opensource program made width Lazarus that will help you tu manage your dbf or paradox tables.
The main features are:
- You can work with multiple tables at once, in mdi forms.
- You can directly add, modify or delete data.
- You can view deleted data.
- You can create, empty, delete, change or restructure a table.
- You can create, delete or modify any index on table.
- You can add or substract two tables.
- You can directly export data in the following formats: CSV, HTML, XLS, DBF, XML or SQL script.
- It works on Windows, Linux and all platforms capable of running Lazarus.
In the program source code, you'll find everything you need to compile MyDbf Studio on your favorite OS.";
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 = '';
}
}