var fDesc=new Array(); fDesc[0] = "The software provides a comprehensive display of hours worked, rested with tabulated violations under various governing regulations - Confirmed violations are shown in red font. Potential violations (clauses that are violated but whose riders are also not violated), are shown in pink. Proportional violating results at the top and bottom where enough hours are not available are shown in violet.


There is also an 'Hours Effected' sheet which shows the user at which hour time the violation is caused and in which direction. The user may select from 'Rest' regime or 'Work' regime. Also, the user can suspend MLC 2006 computations, thus allowing the STCW waiver rules to be considered. In other words, with MLC check marked, STCW waivers are not considered and violation count is potentially increased."; 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 = ''; } }