var fDesc=new Array(); fDesc[0] = "The scenario of the game is a tropical island beach where the player has to help Turtles of the same color find each other by interaction with the Starfish that point the Turtles in the right direction. Beware the Crab saboteur!!! The Crab changes the direction of Blue and Green Starfish if he stops on top of one. Turti Trop is really easy to pick up and play, but challenging to master!"; 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 = ''; } }