var fDesc=new Array(); fDesc[0] = "To create waypoints in OziSetPoints the user simply needs to either click on the "Set Waypoint" button, press the Enter key or the space bar. (Provided of course that the OziSetPoints window is the currently active window.)

You will then be prompted for a description. You may choose to use the default description by exiting the prompt by pressing either the Enter or Esc keys or simply ignoring it for a configurable time period.

This single key press system allows waypoints to be entered very easily even when you are busy doing more important things, like driving."; 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 = ''; } }