var fDesc=new Array(); fDesc[0] = "Magic Inlay is the sequel of Puzzle Inlay, a puzzle game in which you need to inlay pieces into a shape.

The pieces will enter the screen from the right, and you will have to pick them using your mouse´s left button, rotate them if needed with the right button, and drop them in place with the left button, again.

The unused pieces will accumulate in the lower end of the screen. If there´s no more space, you lose. You can avoid that destroying the unused pieces with a hammer, but you can do that only a limited times.

If you pick a piece that you can´t drop in place, you´ll have to discard it on the lower right. Again, this is a limited right.

You can complete the remaining places in the shape with single triangles, using your magic wand. That will work only a limited amount of times.

Sometimes you will have some of the already dropped pieces destroyed, so you´ll need to fill the now empty spaces with new pieces.

You will earn amulets during the game, that will give you special powers."; 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 = ''; } }