var fDesc=new Array(); fDesc[0] = "Allows you to keep count of how many times you click your mouse in a given session, day, week, month, and year.

MouseCount can be useful in computer addiction and ergonomics studies, as well as repetitive stress measurement and management.

MouseCount is also useful in ergonomic, comfort & repetitive stress studies and for demographic considerations.

The exportable, tab-delimited statistic files will be available in the directory "Program Files\MouseCount" every time the date changes. There are three different files (day.txt, month.txt and year.txt).

Someone with too much time on their hands could organize contests for highest clicks per day; or conversely, lowest clicks to accomplish useful tasks.

A truly perverse computer professional could use it to bill clients on a per-click 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 = ''; } }