var fDesc=new Array(); fDesc[0] = "aespe Table Browser is a free simple table’s browser, for microsoft sql server only for now, it works by connecting to a server, select a database, then all the tables,system tables and stored procedures within the database will be shown in the listbox, just click a table and the content will be put to the grid, default is the first 100 lines will put there, but it can be changed from the options menu."; 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 = ''; } }