var fDesc=new Array(); fDesc[0] = "If you've ever tried to maintain cruising, fuel, maintenance and catch logs for your boat using a paper marine log book, you understand what a chore that can be...

- It is never around when you need it.
- It doesn't exactly fit in your pocket.
- It is too inconvenient to use at a busy fuel dock.
- It is difficult to make entries during the course of a busy day. Entries are typically made at the end of the day.
- Lose it and you've lost all your painstaking notes, records and memories. No backing up!"; 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 = ''; } }