var fDesc=new Array();
fDesc[0] = "MouseRate is a simple tool that turns any dull work with computer into a fascinating game. It displays your typewriting' average rate. If you're lazy to work or bored, you can round the desktop & perfectly imitate intensive work.
Just imagine that your mouse suddenly turned into a motor wheel just not to let you fall asleep. Rate your own working speed, set up your record and get excited with your new plaything.";
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 = '';
}
}