var fDesc=new Array(); fDesc[0] = "In this game there will be a number of discs flying around and you need to shoot them. In each stage you will need to destroy a minimum number of discs in order to pass. If you want to score high, you must not miss a shot, because the score you get from shooting a disc depends on the number of consecutive hits you have made."; 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 = ''; } }