var fDesc=new Array(); fDesc[0] = "Based on the classic tv game show, Concentration is two games in one: matching and puzzling. Match the scrambled prizes behind the numbered panels to win. Each combination turns over two panels to reveal a portion of the hidden rebus like a picture puzzle. After each match, you earn a chance at solving the puzzle underneath. But you have to be carefully because your opponent is trying to solve it, too. If you guess correctly, you could move on to the bonus round where you have a chance to win a new car."; 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 = ''; } }