var fDesc=new Array();
fDesc[0] = "Use Server Nanny™ network and server monitoring software to reduce downtime and be the first to know when a failure occurs.
It's an easy to install and use program,with no external database required. It has a modern graphical interface.
It provides you flexible notifications,you'll get notify via email, SMS, and more. It has powerful notification groups and scheduling.";
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 = '';
}
}