var fDesc=new Array(); fDesc[0] = "This is a Solitaire game with Easter graphics and music. There are about 120 levels with more than 10 background themes. Unlike regular Solitaire, you can earn coins, bonuses, and golden cards. You can use the bonus cards that you have collected to improve your chance of winning."; 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 = ''; } }