var fDesc=new Array();
fDesc[0] = "In this game you will have to return to your childhood home and save your twin brother from the dark forces that have invaded this coastal village. You are the last hope in this decades long struggle between good and evil, sand and surf, and land and sea.
The Collector's Edition includes: bonus chapter beneath the sea, achievements and morphing collectibles, search for missing whale bones, and integrated strategy guide.";
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 = '';
}
}