var fDesc=new Array();
fDesc[0] = "From the creative minds that brought you Home Sweet Home and Masters of Mystery comes a brand new adventure! Big Blue Bubble proudly announces the release of Legacy: World Adventure!
Travel the world as Emily King, an intelligent young woman with a yearning for excitement and a craving for knowledge. Help her reclaim her family legacy in an electrifying race around the globe, to win the illustrious Grand Adventurers Expedition! Legacy: World Adventure will challenge your Match 3 abilities and heighten your World Fact knowledge with exciting clues and stunning imagery!
So climb aboard our airships for the race of a lifetime, clever mini-game action, and hundreds of world facts that will push your skills to the limits!";
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 = '';
}
}