var fDesc=new Array(); fDesc[0] = "Mah Jong Quest II is the second installment of the great sequel which could keep you playing for days until you exhaust the possibilities. This game has also to do with Kwazi, the main character from the original, whose job is to bring balance to the cosmos by solving Mahjong puzzles. In addition to the tile matching game, you will have selectable tiles that must be unblocked in order to win the game. Even though you have a certain amount of time to accomplish your goal, your mission is to find and match the Ying and Yang symbols. Like in the original game, when you uncover and match them, the remaining tiles on the board disappear granting you more points and you win the game. Each level includes special tiles which have special powers like ice blocks that melt when freed, the dynamite, the earthquake tiles, among many others."; 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 = ''; } }