var fDesc=new Array(); fDesc[0] = "Space Bourne is a card game with space theme. It has a simple interface and captivating gameplay. You can use a couple of different game cards to advance through levels of the game. There are damage cards to "cripple" your opponents so that you can be the first to complete the mission. Make sure that you have repair cards in case your opponents would "cripple" you."; 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 = ''; } }