var fDesc=new Array();
fDesc[0] = "Windosill is more or less a puzzle game, though it's as much about simple play and understanding as it is about analysis or problem-solving. Fittingly, the game begins with a toybox—you'll be disoriented at first, then come to realize that you can manipulate everything on the screen.
Explore a dream-like world of impossible wonders. Explore 10 different immersive, animated environments. Interact with dozens of physics-based creatures and objects SSolve brain-tickling puzzles to unlock new rooms and reveal new objectives.";
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 = '';
}
}