var fDesc=new Array(); fDesc[0] = "This software offers a solution for users who want to play a game of dominoes against the computer. The computer will start by setting one of its pieces at the center then the player simply drags and drops his choice of domino from his six at the bottom of the screen. The pieces will be used and replenished, as in a normal game, until one player has won. To make the game authentic, extra fun is provided by the 'cheat the computer' button. This pleasant diversion from the daily chores is free."; 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 = ''; } }