var fDesc=new Array();
fDesc[0] = "Realistic 3D battle simulation game that features stunning epic cinematic introduction that thrusts players into the adrenaline-pumping, action packed world of a World War II battleship under enemy fire. The gamer finds himself stationed behind the awesome firepower of a 40mm Anti-Aircraft fixed deck gun on the bow of a battleship reminiscent of the famed U.S.S. Missouri. Your mission is to blast away at the endless onslaught of enemy attackers hell bent on sinking your battleship.
Main features :
- Ship-to-air defensive battle station Different
- dramatic battle background
- Supports Single and Multiplayer option
- Time Attack Mode with difficulty levels
- Survival Mode with difficulty levels
- 45 New Missions
- New enemies: Kamikaze, Submarines, etc.
- WWII era classified armaments and radar
- Progressive missions
- Realistic battle sounds effects Easy play controls";
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 = '';
}
}