var fDesc=new Array();
fDesc[0] = "APOS is the acoustic positioning operating station
for HiPAP and HPR. APOS is a computer with a Windows based operating software.
The systems can be operated from one single APOS station or from a wide number of APOS operator stations connected to a network. The APOS software can be integrated with Kongsberg Maritime Dynamic Positioning systems.";
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 = '';
}
}