var fDesc=new Array();
fDesc[0] = "MongoChef is a professional-quality user interface for MongoDB. MongoChef supports full MongoDB shell integration. It doesn't require you to type any complex connection details; simply click on a connection, database or collection and open an instance of the MongoChef Shell at that location.
MongoChef Shell provides effortless multi-line editing and auto-completion, including database and collection names.";
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 = '';
}
}