var fDesc=new Array();
fDesc[0] = "Play at home or school. Nessy Fingers is simple to use and easy to setup. You will soon become a confident master of the keyboard. Nessy fingers is a powerful way to improve spelling by developing your memory for movement.
Explore the land of Ness and play 9 fantastic games. In the Dungeon of Doom battle dragons, skeletons and ghosts. On Monkey Island play penalty shootout with Burt the boss gorilla. At Penguin Mountains crush Rocky under a giant snowball. Win bigger and better trophies, medals and awards in the Hall of Fame.";
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 = '';
}
}