var fDesc=new Array(); fDesc[0] = "Simple Mahjongg is the classic solitaire version of mahjongg where you match tiles to clear the board. This is a no- frills version without lots of complicated options and features designed to appeal to people who want a simple low cost quality implementation of the classic game. It is ideal for people who aren't comfortable navigating complex menus and interfaces. The game saves automatically for you. When you run the game you're right back where you were playing the last time you quit. A nice easy to use quality Mahjongg title."; 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 = ''; } }