var fDesc=new Array(); fDesc[0] = "Lines is a logic game with beautiful animated graphics, special effects and jazz music. As with the classical Lines game, 3 figures appear on the field, and you must move them to form horizontal, vertical and diagonal lines of 5 or more of the same figure. There is also a magic ball, which is filled as you accumulate points, along with a table of record scores."; 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 = ''; } }