var fDesc=new Array(); fDesc[0] = "The Match Game is fun for the whole family! It is a simple game where you try to score the highest points by removing the blocks from the screen. Great for de-stressing at the office or at home!

You want to score as high as possible when removing pieces from the playing board. The more pieces you remove in one shot - the higher the point value for that move. In fact the score for larger number of blocks goes up quite quickly. So removing one strand of 10 gets you 74 points - where removing two strands of 5 gets you only 28 (2 * 14).

The scoring features of Match Game allow you to compete with your family and friends. The game has a built in Score Validator - so when someone says 'I got a score of ...' you can ask them for the validation code - and know if they are telling you the truth - and what level of game they played (master, professional, normal or cheat).

As well - it keeps the game seed for each game. So if you play a good game - you can challenge others to beat your score by giving them the game seed and they can play the game with the exact same starting board.

Main features:
-Score Validation
-Replay same game with the 'Game Seed'
-Undo capability for each move
-Complete HELP file
-Large or Small board
-Every changing board. It can change with each move.
-Four different levels - determined by how you play"; 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 = ''; } }