var fDesc=new Array(); fDesc[0] = "Future Snooker is a futuristic sports game. Played on a circular table, players score points by firing a glassy cue-ball into a pack of ball to knock them off the table and score points. Future Snooker is a more tactical game that requires more thought and skill. Use the optional aiming guide to hit a ball off the table to 'pot' it but make sure you hit the right ball or you'll end your turn."; 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 = ''; } }