var fDesc=new Array();
fDesc[0] = "Enjoy two magnificent Hidden Object vacations for the price of one.
Visit the city by the bay in Big City Adventure - San Francisco.
Stop into one of the world's popular destinations in Big City Adventure - Sydney.
Search for thousands of items in over 100 wonderful scenes.
Learn informative facts, play fun mini-games, and collect postcards.";
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 = '';
}
}