var fDesc=new Array(); fDesc[0] = "Elastic Soccer is an awesome soccer game with new concept and nice graphics. Your aim is to score more goals than your opponent to win the match. To beat the game, you must avail all of your turns and try to score maximum goals. Remember! If you pass the ball to your opponent(green player) then you will invite him to score the goal. Mouse button to aim and shoot the soccer ball. Shift key to control goal keeper. If ball seems trapped in a gravity no-mans land, click 'shake board' a few times to get it moving again. Good luck..!"; 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 = ''; } }