var fDesc=new Array(); fDesc[0] = "MongoVUE is a MongoDB desktop application that gives you a highly usable GUI interface to work with MongoDB. You can export your collection data, monitor the performance of your servers or run simple visualization on your data. You can also create indexes using point and click and then learn the specific command in MongoDB."; 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 = ''; } }