var fDesc=new Array(); fDesc[0] = "Solitaire: Beach Season 3 is a logic card game set in exotic seaside locations. The rules are simple - you have a card deck with an open card below, and you must find a card that will suit this exact card. Besides ordinary cards, you can see special golden cards. But if you manage to get rid of all of them before the cards return to the deck, you’ll receive the maximum number of points. There are 2 modes for you to play: Newbie (where any level can be replayed) and Pro (where the only entire pack can be replayed)."; 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 = ''; } }