var fDesc=new Array();
fDesc[0] = "Tara needs a vacation from her Lawyer job and jumps at the chance to visit her grandparents on Tiki Island. However, a powerful corporation, lead by the shady Mr. Prophit, wants to build a nuclear power plant on Tiki Island, and displace all the inhabitants! Help Tara and her friends run a fun Tikibar and earn enough money to stop the evil Mr. Prophit in this quirky Time Management game.";
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 = '';
}
}