function show_navaids(){
var ButtonFace = new Array();
var ButtonLink = new Array();
TotalButtons=12;

ThisButton=TotalButtons;

//Load Buttons:

ButtonFace[ThisButton]='Home';
ButtonLink[ThisButton]='index.html';
ThisButton--;

ButtonFace[ThisButton]='About<BR>GCUFO';
ButtonLink[ThisButton]='aboutus.html';
ThisButton--;

ButtonFace[ThisButton]='Search<BR>GCUFO';
ButtonLink[ThisButton]='cgi-bin/search/search.pl';
ThisButton--;

ButtonFace[ThisButton]='Recent<BR>Photos';
ButtonLink[ThisButton]='photos/slides.html';
ThisButton--;

ButtonFace[ThisButton]='Event<BR>Calendar';
ButtonLink[ThisButton]='calendar.html';
ThisButton--;

ButtonFace[ThisButton]='Sport<br>Pilot<br>Info';
ButtonLink[ThisButton]='sportpilot.html';
ThisButton--;

ButtonFace[ThisButton]='UL Stuff<BR>For Sale';
ButtonLink[ThisButton]='forsale.html';
ThisButton--;

ButtonFace[ThisButton]='Local<BR>Airport<BR>Info';
ButtonLink[ThisButton]='airports.html';
ThisButton--;

ButtonFace[ThisButton]='Fellow<BR>Flyers';
ButtonLink[ThisButton]='pixpages/page1.html';
ThisButton--;

ButtonFace[ThisButton]='Links';
ButtonLink[ThisButton]='links.html';
ThisButton--;

ButtonFace[ThisButton]='Memory<br>Lane';
ButtonLink[ThisButton]='memory_lane/oldies.html';
ThisButton--;

ButtonFace[ThisButton]='<img src="podcast/icon-speaker.gif" width="45" border="0"><BR>Podcasts<BR><BR>';
ButtonLink[ThisButton]='podcast/index.html';
ThisButton--;



//Print table shell
document.write('<table width="100" align="center"><tr><td bgcolor="#DCE2E6">');
document.write('<font face="arial" size="2">');
document.write('<center>');
document.write('<font size="3" face="COURIER"><b>NAVAIDs</b></font><BR>');

//Print each button
for (counting=TotalButtons; counting>=1; counting--){
document.write('<hr width="45"><a style="text-decoration:none" href="'+ButtonLink[counting]+'"><font color="black">'+ButtonFace[counting]+'</font></a>');
}

//Finish table shell
document.write('</font>');
document.write('</td></tr></table>');
}