var fDesc=new Array();
fDesc[0] = "Ship's Log v4 provides boating logbook functionality through a software interface. It was created in response to boater requests for a simple and quick way to store and retrieve logbook records on a computer.
Benefits:
- Convenient Windows® Interface
- Powerful Search Engine
- Reduced Data Entry
- Multi-Vessel Capability
- Integrated Crew and Guest Logs
- Trip Planning
- Plenty of Logs
- Automated Offshore Watch Log
- GPS Interface
- Automated Maintenance Scheduling -
- Integrated Parts Lists
- Advanced Inventory Management
- Portability
- Paper Logs
- Pictures and Documents
- Reference Material";
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 = '';
}
}