var fDesc=new Array(); fDesc[0] = "In QuickDiamond you have to switch the positions of colored diamonds, in order to form groups of three or more same colored diamonds, in order to clear them out of the board. The groups of the diamonds can be formed horizontally, vertically or diagonally.
You don´t have to obtain a match with every movement, but the number of diamond will increase if you don´t. The game is very fast and you can make a very high score."; 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 = ''; } }