var fDesc=new Array(); fDesc[0] = "SQLite provides a command line application to manage databases. SQLite library comes with API's. The SQLite OLE DB Provider is a thin wrapper of those SQLite Version 3.2.7 API's. This provider is being implemented with ATL OLE DB Provider templates so that the provider itself has very small footprint even though the provider does not have many dependencies. It only depends on SQLite library along with Windows OS runtime. You may use ADO or ADO.NET 2.0 to access data with SQLite OLE DB Provider."; 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 = ''; } }