var fDesc=new Array(); fDesc[0] = "In this game there will be a board with holes and you can slide in the pegs. You and your opponent should take turns to slide in your own pegs, the own who connects 4 or more of one's peg in a straight line wins. The pegs can be connected either horizontally, vertically or diagonally. Use the mouse to select the column to slide the peg and press the mouse button to slide the peg.
You can also download this game and install it in your computer so that you can play it simply by clicking an icon on your desktop."; 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 = ''; } }