var fDesc=new Array();
fDesc[0] = "The Great White Destroyer is a game where you control a shark eating other fish and kill people. This game is not recommended for kids because of the violence.
The main features of this game are:
- simple mouse controls, a joy to play.
- 4 difficulty levels, so even the lousiest players stand a chance.
- 2 different game modes, each with their own funnydark story and challenges.
- 32 stages of destruction.
- 74 enemies to beat the crap out of, that includes bosses.
- scoring snowball effect : The more you score > the harder the enemies
- crave system rewards the player with power-ups and bonus points for fulfilling mid-level tasks.
- fill the Blood Frenzy meter and go nuts on everything
- 71 achievements to complete!
- online scores ensure that someone else's e-peen is larger than yours.
- all original art, sound, and music.";
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 = '';
}
}