var fDesc=new Array(); fDesc[0] = "Traffic Counter is a very useful tool to monitor network traffic used by your computer. It is very useful when someone is using a limited internet connection. It counts downloaded and uploaded data and reminds you when you reach your maximum limit. It runs in background mode and starts automatically when your system starts. It displays current used traffic as well as total monthly traffic used by a system. User can set monthly traffic limit and they will be notified when they reach their limit.
This software runs in system tray and displays the total monthly traffic used when the user moves the mouse arrow on its icon. After double clicking on its icon its main interface will be displayed where user can see the current download and the upload rate, total traffic used today and total monthly traffic. User can also see daily and monthly log by clicking on the option on its main window. In the setting option user can set monthly traffic limit for alerting and the start day in a month for counting traffic. Its icon in the system tray turns red from green automatically, when user reaches his monthly allocated traffic limit."; 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 = ''; } }