var fDesc=new Array();
fDesc[0] = "Tridentnav ECS Standard is a very powerful tool that makes your navigation safe and easy.
Main features:
- Chart plotter using the chart format S-57 giving a seamless presentation
- North or course stabilized chart presentation
- Possibility of manual updating of charts
- Chart updates via CD
- Vectorized chart format with different layers of information
- View system with up to 30 different screen layouts";
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 = '';
}
}