var fDesc=new Array(); fDesc[0] = "Play classic backgammon on your computer. Noteworthy Backgammon includes ten unique computer opponents to play with - each with their own style and skill level. Also included are advanced features, such as unlimited undo/redo, game match statistics tracking, move hint function, game saving/loading and a 'big' and easy-to-see game board. The help file includes many useful tips and strategies for becoming a better backgammon player, as well as notes on backgammon"; 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 = ''; } }