var fDesc=new Array(); fDesc[0] = "Based on an idea received from Susan Alastair. Basically in the game you click a Question button and the time is spoken to you (plus shown on screen). You then have to set the hands to the right time and you score points for getting it right. There are 3 levels of difficulty. On the first the questions are only O'clock, quarter to/past and half past the hour. There is also a Practice level where you can set the hands to any time and hear the time spoken to you and there is a certificate to print out too."; 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 = ''; } }