function menu_goto( menuform )
{
  // Generated by thesitewizard Navigation Menu Wizard 2.3.2
  // Visit http://www.thesitewizard.com/ to get your own
  // customized navigation menu FREE!
  var baseurl = 'http://www.moving-on.net/' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="chgoto" method="get">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="">Choose a Base Site</option>' );
document.writeln( '<option value="academy/index.html">Air Force Academy, CO</option>' );
document.writeln( '<option value="buckley/index.html">Buckley AFB, CO</option>' );
document.writeln( '<option value="cheyenne/index.html">Cheyenne Mountain, CO</option>' );
document.writeln( '<option value="ellsworth/index.html">Ellsworth AFB, SD</option>' );
document.writeln( '<option value="warren/index.html">FE Warren AFB, WY</option>' );
document.writeln( '<option value="ftcarson/index.html">Fort Carson, CO</option>' );
document.writeln( '<option value="hill/index.html">Hill AFB, UT</option>' );
document.writeln( '<option value="luke/index.html">Luke AFB, AZ</option>' );
document.writeln( '<option value="minot/index.html">Minot AFB, ND</option>' );
document.writeln( '<option value="nellis/index.html">Nellis AFB, NV</option>' );
document.writeln( '<option value="peterson/index.html">Peterson AFB, CO</option>' );
document.writeln( '<option value="schriever/index.html">Schriever AFB, CO</option>' );
document.writeln( '<option value="whiteman/index.html">Whiteman AFB, MO</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

