var fDesc=new Array(); fDesc[0] = "Do you like soccer? With this game you can practice your penalty skills. The goal of this game is to score as many penalties as you can. To do so, you can set the force and angle of your shots. The goalkeeper will try to block your shots so you have to think smartly and shoot with precision. The game will keep you entertained for a long time."; 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 = ''; } }