var fDesc=new Array(); fDesc[0] = "Star Badminton is a very simple game in which you play badminton against the computer. The objective, of course, is to score more points than the computer. It looks easy to play, but the controls are not very handy. You move your star using the arrow keys and you have a set of keyboard keys that you use in order to make a long shot, short shot, and smash, illustrated in the instructions at the beginning of the game. You can actually try out the game online, or download it to your computer."; 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 = ''; } }