var fDesc=new Array(); fDesc[0] = "Laruaville 5 is a match-three puzzle game with 20 different levels. A couple of ghosts, feeling the call of the sea, decided to go on adventure. Unfortunately, a violent storm tore their ship apart and sunk it. Luckily, nobody got hurt, but they were cast ashore on an uninhabited island. It is up to you to help them build a ship and get back home."; 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 = ''; } }