var fDesc=new Array(); fDesc[0] = "In this game there will be balls of two colours bouncing on two sides of the screen. Between the two sides there is an opening, you need to control the opening so that each side contains balls of the same colour. If you cannot separate the balls within a time limit, then you lost. As the game progresses there will be more balls and it will be increasingly difficult to separate them. Use the mouse to control the position of the opening."; 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 = ''; } }