var fDesc=new Array();
fDesc[0] = "Enchanted Kingdom: A Dark Seed Collector's Edition is a point and click, hidden object game with 3D graphics.
Main features:
- Help Emirus regain his magical abilities in the bonus chapter.
- Find morphing artifacts and busts of famous doctors.
- Collect gemstones to improve your Zoological Garden.
- Earn achievement awards for your magical game play.
- Enjoy concept art, soundtrack, and wallpapers.";
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 = '';
}
}