var fDesc=new Array();
fDesc[0] = "Fishing Planet is a realistic first-person multiplayer fishing simulator. Choose your lures, make your trophy catches, discover new possibilities and sharpen your real angling skills anywhere, anytime with your friends.
Main features:
- 32 species of fish, each with its unique behavior and AI.
- 7 scenic waterways with multiple locations, various climatic conditions, bottom terrains and vegetation.";
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 = '';
}
}