var fDesc=new Array();
fDesc[0] = "Advanced is the enhanced version of the popular arcade game Dive!. In this exciting and challenging game you will be placed at the helm of a deep-sea submersible in the middle of troubled waters.
You are responsible for retrieving a number of precious artifacts off the ocean floor in waters ruthlessly patrolled by enemy nuclear submarines and riddled with depth charges, mines, and torpedoes.
It will take razor-sharp skill and split-second thinking to dodge and weave through these dangers and complete your mission.";
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 = '';
}
}