var fDesc=new Array(); fDesc[0] = "Whomp Buddy - Pogo is a program that scans the letters on the game board automatically and then uses a built-in dictionary and the Word Whomp strategy to find all possible word solutions and clearly lists the answers on the display. It includes a Pogo-customized 72000 word dictionary that can be edited or replaced by the user. It also allows you to easily earn Word Whomp badges, ranks, and tokens."; 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 = ''; } }