var fDesc=new Array(); fDesc[0] = "Annoy your opponents and win the game!. Multiplayer Online Boardgame. Up to 4 player can play in a network (TCP/IP) against each other, or stand alone against the computer. Funny pixel graphics, sound, a lot of properties, and high play strength. Excitement and fun for young and old. The object of the game is to get around the board and back to your home section. If you land on another player's piece, you send them back to the start."; 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 = ''; } }