var fDesc=new Array();
fDesc[0] = "Amusement World is inspired by some of the grandest amusement parks in the world, but with a nod towards the endearing charm of boardwalks and carnivals. From skee-ball to dart throwing to target shooting, all of the classic carnival games are in this game.
Main Features:
- 4 unique themed lands.
- Challenging logic puzzles.
- Carnival games.";
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 = '';
}
}