var fDesc=new Array(); fDesc[0] = "Candy Four Winds Mahjong is a candy themed Mahjongg matching puzzle game with a layout that represents the four winds: Northern, Southern, Eastern and Western. The tile images are replaced with candy icons. You can play in full screen mode or create your own puzzle layouts and play them. Earn coins by completing levels, and use them to buy hints or shuffles in the game.

If you're not familiar the puzzle game Mahjongg, it is a simple matching puzzle game where you are trying to remove all the tiles from the game by matching them up with tiles that have the same image on them. You can pair any two tiles in a match as long the tiles are not blocked on both the left and the right side, and there isn't a tile partially or completely covering the tile from above. When you've paired two tiles up, they are both removed from the game, which can potentially free more tiles for matching. If you don't fully understand which tiles are free to match and which ones are not, in this version of the games the tiles you are not allowed to select are dimmed."; 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 = ''; } }