var fDesc=new Array();
fDesc[0] = "Paramarine is a fully integrated Naval Architecture tool. Its Concept Design module provides the ability to represent the make-up of a vessel using the building block methodology. Each component within a design can be represented as a block, to which any number of individual characteristics are applied, such as weight, power requirement or volume demand.
Utilising the 3D visual representation of a vessel, Paramarine’s Stability toolset enables you to define intact and damaged cases.";
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 = '';
}
}