var fDesc=new Array();
fDesc[0] = "A light-hearted, appealing graphical adventure from the creators of Santa's Secret Valley and Twisted Tails. Uncle Julius - that celebrated scientist and adventurer - is trapped in another dimension, and is counting on you to rescue him... preferably before he finishes his book! To succeed you'll have to cope with brain-teasing puzzles, strange new worlds, and an odd assortment of characters from gnomes to ghosts to wandering mathematical gypsies.
The game has a strong science theme - be prepared to learn while you play. Non-violent fun, gorgeous illustrations, challenging puzzles. Children love it; adults do too.";
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 = '';
}
}