var fDesc=new Array(); fDesc[0] = "Multiplayer Aeroplane Race is a game in which you have to prepare to soar above the sky as you participate in an exciting race. Your goal in this 4-player game is to move all your planes to the destination before your opponents do so. You and your opponents will be assigned a set of 4 colored pieces and all players will take turns to roll a die and make the available moves accordingly."; 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 = ''; } }