var fDesc=new Array();
fDesc[0] = "SQL Master started as a small scale MySQL GUI editor. At first it was just a basic tool for running long SQL queries in a threaded environment, but it soon grew into a fully fledged MySQL Graphical editor.
Features
SQL Master contains all of the features of a MySQL Gui front end and a few more. Features include:
- Multiple Server Connections.
- Graphical Table Editor.
- Drag and Drop query builder.
- Data Export: Export tables, views and custom queries in popular formats such as CSV, Excel, XML, and HTML
- Real Time server status.
- User Management.
- Optimised for MySQL 5.0 >.
- MySQL query syntax highlighting and code auto completion.
- Multiple query editors.
- Multi platform: Use the same application in Windows, Linux and Mac platforms.";
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 = '';
}
}