var fDesc=new Array();
fDesc[0] = "The depths of the oceans have always attracted mankind's imagination, sometimes even more than the embraces of a fatal beauty. Thousands upon thousands of dare-devils, over the centuries, have sought adventures in deep waters. Alluring treasures of sunken boats, mysterious nature, legends.
Main features:
- Complex diving simulator
- Mix of strategy/action
- Unlimited nonlinear gameplay
- 2 modes of game play: arcade, simulator
- Video teaching system
- Opportunity to research real sunken boats, planes, cities
- More than 15 real diving sites
- Real equipment.
System Requirements: Pentium IV 1600MHz, RAM 256MB, HDD 3 Gb, Video card DirectX 8 compatible with Pixel Shader support.";
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 = '';
}
}