var fDesc=new Array();
fDesc[0] = "The fourth installment to the award-winning Jewel Quest Mysteries series is here. Rupert is back along with his two best friends, Emma and Sebastian. The three heroes are on a quest to find the most coveted jewel board of all, the Oracle of Ur. Can they successfully retrieve the Oracle of Ur?
- Play as Emma, Rupert, and Sebastian
- Explore beautiful locations as you uncover many hidden objects
- Enjoy fun mini-games, solve puzzles, and complete jewel boards";
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 = '';
}
}