var fDesc=new Array();
fDesc[0] = "LogLady is the small, fastest Syslog server for Windows. LogLady allows you to collect all the Syslog traffic on your network in a single place. Many devices on your network can probably output Syslog messages. Printers, routers, firewalls, Linux computers, and Windows can all output syslog messages.
LogLady provides a way to filter, analyze, and act on messages. You may want to be e-mailed when a router identifies an issue. Some messages could trigger the execution of a program to deal with the situation. LogLady can do all this and 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 = '';
}
}