var fDesc=new Array();
fDesc[0] = "A puzzle game, which is somewhat similar to a hidden-object game. Twisted Lands: Origin comes with spooky graphics and audio. There are a number of levels where you search for useful items to solve cleverly designed puzzles. The game can be felt a little hard at the start. But there is a step-by-step tutorial to help you proceed with the quests. You may also download the strategy guide for more info.";
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 = '';
}
}