var fDesc=new Array(); fDesc[0] = "Gabe's TypOmeter is a utility which measures how much you are typing, and the speed you are typing with. The TypOmeter is analogue, and everything is animated just like an old fashioned speedometer!
The TypOmeter displays a lot of live information: The speed you are currently typing with; measured both as key presses per minute - KPM, and as Words per minute - WPM. It counts the number of keystrokes, words and mouse clicks pr day, and the total number of keystrokes and mouse clikcs you have performed ever. Finally you get some rough statistics about what kind of keys you have typed."; 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 = ''; } }