var fDesc=new Array(); fDesc[0] = "Sushi Buddy is a helpful tool for Pogo Sushi Cat 2 players. This auto shows and plays hints and plays the game for you automatically until you tell it to stop.

The layout of Sushi Buddy is easy to figure out. The Display area is a mini replica of the game in real-time. Below this is the Stats so that you always know how many games have been played, and what your current high score is.

The interactive user area of the GUI has an Autoplay button which doubles as a Stop button. Autoplayers will appreciate the Collapse feature (it also doubles as a Expand option). If you prefer to play with a buddy on the sidelines for assistance, then take note of the Show Hint and Play Hint options. It also lists a couple of menu options: Options, Rooms, and Help. You can learn more about these by reading below."; 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 = ''; } }