var fDesc=new Array(); fDesc[0] = "This application monitors your internet connection and displays information about sent and received bytes. It features:

Instantaneous transfer rate and history with a graphic
Sent and received bytes for the current day
Sent and received bytes for the current month
Custom counter (started and stopped by the user)
Forecasts for the end of the month
Alert dialog box in case of limit exceeding
Secure file save to keep data in case of PC crash
Refresh rate (file and display) customizable
Handles several network adapters with separate counters"; 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 = ''; } }