var fDesc=new Array(); fDesc[0] = "Dot-Mania is a fun game of join-the-dots for kids of all ages. The user uses the mouse to join the dots in numerical order, then they can colour the completed picture in! Also included is a help facility for when you can't find the next dot, and the ability to print the picture. Songs play in the background and there are lots of neat sound-effects and voices to keep the kids entertained."; 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 = ''; } }