var fDesc=new Array(); fDesc[0] = "Use SQLitePlus Database Explorer to view/edit your SQLite databases. SQLitePlus Database Explorer is similar to SQL Server Query Analyzer. You can create/drop/view Tables, Views, Triggers, and Indexes, and also issue SQL queries and commands to view and otherwise manipulate your data. The data is displayed in a grid control, allowing you to copy the data to files or other programs."; 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 = ''; } }