var fDesc=new Array(); fDesc[0] = "Heart Mahjong Words is a mahjong word puzzle game with a Heart shaped layout. Earn Bingo points by creating 8 letter words. Dictionary built to accept Scrabble legal words. Win the game by clearing all words from the board.

If you have never played a game of Mahjong Words, it is a Mahjongg style game where the player removes tiles from the game board. Instead of matching tiles as you would do in a typical game of Mahjongg, the player spells out a word then clicks the submit button. If the word submitted is a legal Scrabble word (no proper nouns), the tiles are removed from the game. You win the game by removing all the tiles from the game board. You can also score 'Bingos' by creating words with 7 or 8 letters in them."; 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 = ''; } }