var fDesc=new Array();
fDesc[0] = "The coins machine is a beat the clock addition game in which players must accumulate a target amount in coins.
The game is useful for developing and practicing strategies around hundreds, tens and units as well as supporting other work on coin recognition and money skills.
Now includes a Mac/OSX version and two sets of UK coins (new and old designs) as well as Euro, US and Australian currency.";
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 = '';
}
}