var fDesc=new Array();
fDesc[0] = "Build up your spooky Fishdom! Earn cash as you complete addictive tile-swapping levels and spend it to fix up your spooktacular tank. Create the eerie atmosphere of an underwater haunted house with witches, vampires and ghosts in your aquarium.
Features:
Spooky match-3 fun
Almost 100 boo-tiful fishies and accessories
Unlimited number of tanks to create and design
Endless replay value
Set up your aquarium as a screensaver
Watch out: you can be spooky splashed!
Have fun taking care of quirky tropical fishies and adding boo-tiful accessories to the virtual aquarium of your dreams!";
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 = '';
}
}