var fDesc=new Array(); fDesc[0] = "Pretty Good Solitaire is a collection of over 1000 Solitaire games. You get to play classic games like Klondike, FreeCell, and Spider, and original games found nowhere else. Pretty Good Solitaire is easy to play, giving you the choice of the standard drag and drop or its unique quick right button mouse clicks to move the cards. Leave a game while it is in progress and this program will save it for you - when you enter that game again it will play the game back for you to where you left off"; 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 = ''; } }