var fDesc=new Array(); fDesc[0] = "Screw Thy Neighbor is a card game, and a pretty simple one, too. The object is straightforward: Try to win the pot at the end of the game by avoiding the lowest card during each round (you have the right to trade your card with an adjacent player, which is where the "screwing" part enters into play). The program features colorful graphics, sound effects, and it also keeps track of player statistics (a complete help/documentation file is included as well)."; 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 = ''; } }