var fDesc=new Array();
fDesc[0] = "LanLight was written to replace the missing LAN activity lights for Windows 95/98 after upgrading to DSL or Cable with even more functionality.
Main Features:
-Track throughput on each of your network interfaces
-Graphical representation of data flow in systray
-Tracks max and average send and receive speeds
-Shows total bytes sent through interface
-Graphs realtime bandwidth
-Allows customizable icons in systray
-Loads on Windows Startup
-Trace Route and Ping/Hostname resolve functions
-Gradient XP icons show upload/download speed
-Memory usage shows used physical memory (Great for Windows 98 users with no Task Manager)
-Find out your IP address without using ipconfig";
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 = '';
}
}