var fDesc=new Array();
fDesc[0] = "It's a combination of hidden object games and tile-matching puzzles and also has a variety of mini games. Along your journey you'll visit hundreds of unique locations and collect power-up pearls. Reveal the magic spells and restore the sparkling gems of the magical amulets.
Featuring 2 game modes, 100+ levels of game play, challenging Mini-Games and Hidden Object fun, Liong: The Lost Amulets truly is a game unlike any other.";
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 = '';
}
}