var fDesc=new Array();
fDesc[0] = "BoxMonitor is a useful Server-Monitor program with an intuitive interface. BoxMonitor is able to check a single specified service-port on a remote server, this means instead of just pinging the entire server you can scan a single service-port like the HTTP at port 80 or a gameserver at port 20100, to check that service-port is running. Most ping programs will only tell you if the server is up or not. BoxMonitor is fast and rugged, will check upto 20 servers in 1 scan and has alot of features that makes it friendly to use, like easy updating of server info, server-list print out, systray icon, E-mail notification if a server goes down, screen log of server problems, save logfile, print logfile, time based autocheck, and much more.";
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 = '';
}
}