var fDesc=new Array(); fDesc[0] = "Choose from over 300 layouts, all distinctly original, ranging from super easy to extremely challenging. Plus, there are four exciting ways to play! Classic mode allows you to play like you've always played Mah Jong Solitaire. In Ten mode, the object is to select tile pairs that add up to ten. In Freecell mode, you can move up to two tiles out of the way into a special "reserve" area. And in Addiction mode, rearrange the tiles in numerical order."; 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 = ''; } }