var fDesc=new Array(); fDesc[0] = "Great Uncle Worm is a snake game with a unique twist (no pun intended). Based on the TI-83 game (not by Doc Entertainment), Great Uncle Worm has players moving around the field in a circular motion instead of just 90 degree angles in traditional snake games.

Great Uncle Worm offers many different levels of customization. Players can choose from the difficulty, speed, control type and starting size of the arena. While it may be tempting to turn on the easier settings, players are rewarded with a bonus multiplier for the harder that the game is set on, which will boost their final score by that multiplier."; 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 = ''; } }