var fDesc=new Array(); fDesc[0] = "Polyomino-7 is an interesting game for any age (from child to old man). The objective of the game is to exactly fill the grid of the puzzles using the necessary twenty unique figures.
The program offers you the following possibilities: play to more than 500 puzzles, create your own puzzles, save and load games, show legal moves, inverse illegal moves, shadow, contour, choose colors (ink, background, contour), change scale of square, select a "skin" for display figures (14 "skins" are included), and more."; 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 = ''; } }