var fDesc=new Array();
fDesc[0] = "Datastream Pro is a database browser and data manipulation tool.
It is intuitive and easy to use.
Features:
- Browse and edit the data in your database.
- Run and edit SQL scripts in a user friendly environment.
- Use the query editor to edit your SQL queries.
- Simultaneously connect to multiple databases
- Supports almost any JDBC compliant database (tested on Oracle, MySQL, postgreSQL and HSQLDb)
- Easy to use connection wizard.
- Secure, personalised settings for connections and preferences
- Built in text editor
- Reliable and stable
Datastream Pro is avaliable on both Linux and Windows";
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 = '';
}
}