var fDesc=new Array();
fDesc[0] = "Freelabs Desktop Counters It's a tool that keeps trak of your mouse clicks and calculates the calories burned when using your mouse.
Freelabs Desktop Counters's features include:
Intuitive Interface
Counter for left clicks
Counter for right clicks
Counter for calories burn
Cumulative counters
Reset counters
Light indicators when clicks/keypress events occur
Hide window to tray
Transparent background
Standard Functionality
Desktop Counter can be used as a mouse meter to evaluate your clicks number over a period of time and also your effort using the computer keyboard/mouse on daily basis.";
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 = '';
}
}