var fDesc=new Array(); fDesc[0] = "Dragonboard is a solitaire version of the well-known solitaire variation of the ancient chinese game of Mah-Jongg. The goal of the game is to clean up a board of 144 tiles by finding and discarding matching pairs of tiles. There is also a bonus pack offers you many more variants of the original game as well as different graphics."; 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 = ''; } }