var fDesc=new Array(); fDesc[0] = "DominOSA is a mouse controlled game where you have to place all the domino stones on the gameboard according to the numbers. The program has interactive features to help you to place the stones. There is also a number of spoils (or cheats) that will help you to solve the puzzle. The game comes with over 40 different layouts."; 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 = ''; } }