var fDesc=new Array();
fDesc[0] = "LANScan is a fast and easy to use program for monitoring network activity.
Fully compatible with Microsoft Windows XP, 2000 and ME/98, LANScan requires no special hardware to instantly see into your network.
Install LANScan on any PC on your network and it will collect data automatically.
Built in real time graphics and dynamic lists display network activity in a way that is easily understood by all users.
Use LANScan to solve common network problems including network slowdowns; device availability; inappropriate use; application failures and more.
LANScan identifies all network devices and reports on their activity making it easy to identify unwanted or unexpected users.";
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 = '';
}
}