var fDesc=new Array(); fDesc[0] = "Match3 Maze is a kind of game, which you cannot help playing! Its magic keeps you playing on and on till you twist your brain up. In this game, you need to make a row of 3 matching items in one string. On doing so, the items disappear and you win. The row needs to be led with a cursor, which you navigate on the playfield. The cursor acts as a needle leading a thread. You cannot cross your own way, so any trek intersections are not allowed. So must plan your cursor movement thoughtfully. Besides entertainment, this game is a good training tool to master your attentiveness, ability to grasp a full picture and persistence. But above all, this game brings lots of fun and inspires your imagination!"; 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 = ''; } }