var fDesc=new Array();
fDesc[0] = "Features:
- Three dimensional dynamic simulation of an AUV and the external environment.
- Simulation start/pause/stop and simulation time display.
- Application programming interface that is compatible with C and C .
- Debugging console window that can be printed to with standard C/C functions.
- Customization of simulation parameters, AUV and environment through XML files.
- Extensibility through C plugin model.";
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 = '';
}
}