var fDesc=new Array();
fDesc[0] = "SQLiteStudio is a SQLite database manager.
The program provides the following features: all SQLite3 and SQLite2 features wrapped within simple GUI, cross-platform, exporting to various formats (SQL statements, CSV, HTML, XML), on-the-fly syntax checking, UTF-8 support and much more.
Currently translated to: English, Polish, Spanish, German, Russian, Japanese, Italian, Dutch, Chinese.";
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 = '';
}
}