var fDesc=new Array();
fDesc[0] = "SQLite2009 Pro allows you to manage SQLite3 enabled databases. The software features the latest standards when it comes to item management.
Main features:
- Encryption Method is now compatible with wxSQLite3 (AES-128 bits) and SQLite3 ADO.NET
- Provider (RSA-MS Crypt)
- Syntax Highlight
- Hex Viewer
- Dump database to SQL file format
- Unicode Support
- Blob/Image viewer
- Built-in FTS3 Extention
- Built-in LUA Programming Language
- Encrypted database support
- Export recordset into excel, csv, xml and html format
- Import data from Ms Access / MS SQL server
- Includes SQLite2009 Pro ODBC Driver
- Includes Additional sqlite3 function (compress, decompress, crc32, md5, lua_exec, etc)
- Transactions supported
- Visual Query Builder";
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 = '';
}
}