var fDesc=new Array();
fDesc[0] = "SEASOFT for Waves is a program for the use of SEAGAUGE Wave and Tide Recorder. This application has some great features, such as:
- Plan Deployment (not applicable to SBE 53) -- Calculate pressure attenuation and predict surface wave analysis parameters for proposed wave sampling scheme.
- Battery and Memory Endurance -- Calculate expected battery and memory endurance for proposed sampling scheme.
- SeatermW -- Communicate with instrument to program for deployment and upload data.";
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 = '';
}
}