var fDesc=new Array();
fDesc[0] = "Falco InPlace is a free game suitable for all users with its friendly, intuitive interface.
All you have to do in order to win is to carefully align chips where they fit best. Face them the wrong way and the picture is closed. Difficulty rises with level, and more interesting critters appear over time Click the chip to rotate clockwise together with its neighbors.";
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 = '';
}
}