var fDesc=new Array(); fDesc[0] = "Lines-7 is a logic game for any ages which has simple rules. You must put together several tiles, which have same color, for remove them. Minimal length of color line depend of game level, for example in the first level it is three. Lines must be vertical or horizontal. On game round you must move one placed tile and one dropping tile.

This program offers you the possibilities to play to more than 45 levels of difficulty: from very easy for children to very hard, to widely change appearance of game window or to change: "skin", background and ink colors, scale of game field, opaque of moving tile and you can, also customize sound effect."; 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 = ''; } }