var fDesc=new Array(); fDesc[0] = "mathematical game with a logical twist. Eliminate pairs of numbers by matching them against correct answers. Playing the game. Drag answers from right side onto pairs of numbers on the left side. Eliminate all the numbers to complete the round. Use the logical clues to find the solution. Elimination in progress Drag a red answer from the right onto a matching green pair on the left."; 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 = ''; } }