var fDesc=new Array();
fDesc[0] = "The only flight planner that allows you to point-and-click on the official Airservices Australia's maps to plan flights.
Main Features:
- AirNav VFR is the ultimate Australian PC flight planner for both VFR and IFR pilots
- Plan your flights on digitised versions of the official Airservices maps
- AirNav VFR calculates all your flight plan details
- Prints your plan details including all radio frequencies automatically generated.
- Load your AirNav route into your GPS or activate AirNav's optional GPS in-flight Moving map feature.";
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 = '';
}
}