var fDesc=new Array();
fDesc[0] = "The classic game of Battleship has grown up! Ships move, submarines dive, and minesweepers sweep for mines.
A simple upgrade system allows you to advance your ships as the game goes on. Choose from 5 periods in naval history as you fight single-battle or multi-battle wars. All beautifully animated in 3D. For 1 to 2 players.";
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 = '';
}
}