var fDesc=new Array(); fDesc[0] = "Use mouse to select and move blobs. In 2 player mode both players share the mouse. End the game with more of your blobs on the board than your opponent. A game like this takes strategy and patience. There are 6 different boards that the user can choose from. Just like when playing slots at king solomons the user can have lots of choices of what kind of slots game you will play."; 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 = ''; } }