var fDesc=new Array();
fDesc[0] = "The Company of Myself is a puzzle game, and that means that the challenge comes from the puzzles. Giving solutions to the puzzles is the equivalent of turning on godmode in an action game: You lose all of the challenge!
If you're having trouble with a level, try looking at it in a new way or doing something else for a while and coming back to it. And hey, just imagine how smart you'll feel when you figure out that extra-hard puzzle. press the SPACEBAR when touching the green exit box to continue. Good luck!";
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 = '';
}
}