var fDesc=new Array(); fDesc[0] = "Monte Carlo is a solitaire card game where all you have to do in order to win is to remove matching cards from the grid with the objective being to clear the grid for bonus points.
You receive points for all cards removed as well as a bonus if all cards are removed."; 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 = ''; } }