var fDesc=new Array();
fDesc[0] = "PostgreSQL Code Factory is a powerful PostgreSQL GUI tool aimed at the SQL queries and scripts development.
Its main features include a visual query builder, a handy SQL Editor with code folding and syntax highlighting, simultaneous executing of several queries with multi-threading, data management capabilities that include editing, grouping, sorting and filtering abilities, data export to as many as 18 file formats, data import from Excel, CSV, text files and more, a powerful BLOB Viewer/Editor, and more.
The application also provides you with a powerful set of tools to edit and execute SQL scripts, build visual diagrams for numeric data, customize user interface according to your needs and much more.";
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 = '';
}
}