var fDesc=new Array();
fDesc[0] = "Bandwidth Usage Monitor is the latest offering, which keeps track of your broadband data usage.
Features:
- Simple Interface
- Calculates usage upto Peta Bytes i.e 1 PB = 1,000,000,000,000,000 bytes (more than you will ever need)
- Monthly/Yearly Reports
- Small Display Bar, which can be turned on to remain at the top of every application. This gives you a quick glimpse of the data transfer rate.
- Can automatically start with Windows.
- Graph
- Specify Daily/Monthly limit and monitor easily on the main window.
System Requirements:
Microsoft Windows 2000/XP/2003/Vista/Windows 7
Microsoft .NET FRAMEWORK SP1";
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 = '';
}
}