var fDesc=new Array(); fDesc[0] = "Solitaire: Ted And P.E.T. is a card game where you join the crew of the scientist Ted and his robotic helper P.E.T. Using a time machine you will explore the world from the very beginning. The rules are simple, you are to match cards that are coming before or after the card you have on the game board."; 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 = ''; } }