var fDesc=new Array();
fDesc[0] = "IRClassTM software is a software package which assists surveyors in verification of the compliance of the ship thickness measurements according to rules and regulations set forth by Indian Register of Shipping and IACS CSR for Oil Tanker and Bulk Carrier.
It is developed by Indian Register of Shipping. The purpose behind the development of this package is to provide surveyors with a handy tool to simplify the process of thickness measurement during survey of the ship.";
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 = '';
}
}