var fDesc=new Array(); fDesc[0] = "A simple game of logic, similar to billiards. Use your mouse pointer to drive the ball across the field and slam the balls into the hole. Select your start point from one of six positions. A grate and fun game with a grate interface. Good for the kids, who like billiard."; 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 = ''; } }