var fDesc=new Array(); fDesc[0] = "MyMahj is a nice and relaxing solitaire mahjongg game in 2D and 3D.
Games' rules

The purpose of the game is to clear the screen of tiles by clicking on two identical tiles (or two seasons or flowers). Only exposed tiles can be removed at any given moment. A tile is exposed if there is no tile over it, and if there is empty space on its left or right side.
Here are some key features

* The window can be resized (you can play in all screen resolutions).
* The game remembers the window size between sessions.
* The tiles have shadows and they disappear progressively when they are removed.
* The game is multi-language: English and French are available."; 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 = ''; } }