var fDesc=new Array();
fDesc[0] = "BitNami Mantis Stack greatly simplifies the deployment of Mantis and its required dependencies.
BitNami Cloud Hosting simplifies the process of hosting BitNami applications. Here are just a few of the benefits you’ll get:
-Deploy your favorite application to a real, running server in minutes.
-Start, stop and backup your server with one click.
-Schedule automatic backups to make sure that you always have an up to date copy of your server.
-Change the size of your server as your needs change – with one click.
-Manage servers across multiple cloud accounts from one login.";
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 = '';
}
}