/******************************
story_goto: This script creates and populates the option menus that appear on the stories pages.
This script is based on lessons learned at thesitewizard (http://www.thesitewizard.com)
******************************/

// IMPORTANT: CHANGE THE BASE URL WHEN UPLOADING

function story_goto( menuform )
{
// var baseurl = 'file:///D|/Webs/Midlife-DM1/Midlife-DM1/stories/' ;
var baseurl = 'http://www.midlifeflight.com/stories/' ;
selecteditem = menuform.url.selectedIndex ;
newurl = menuform.url.options[ selecteditem ].value ;
if (newurl.length != 0) {
	location.href = baseurl + newurl ;
	}
}
document.writeln('<form action="storylist" method="get">' );
document.writeln('<select name="url" onchange="story_goto(this.form)">' );
// The option values go here;
document.writeln('<OPTION VALUE="index.htm">--Choose a story --</OPTION>');
document.writeln('<OPTION VALUE="tahoe.htm#start_story">Soaring at Lake Tahoe');
document.writeln('<OPTION VALUE="montsolo.htm#start_story">Montana Solo Cross-Country');
document.writeln('<OPTION VALUE="florida04.htm#start_story">Florida Fantasy Flight');
document.writeln('<OPTION VALUE="maui.htm#start_story">Maui');
document.writeln('<OPTION VALUE="columbia_river.htm#start_story">Columbia River & Mt Hood');
document.writeln('<OPTION VALUE="comntn.htm#start_story">Flying the Colorado Rockies');
document.writeln('<OPTION VALUE="oldfriend.htm#start_story">Visit To An Old Friend');
document.writeln('<OPTION VALUE="socal.htm#start_story">SOCAL and Catalina Island');
document.writeln('<OPTION VALUE="natchez.htm#start_story">Natchez, MS');
document.writeln('<OPTION VALUE="alaska.htm#start_story">Alaskan Adventure');
document.writeln('<OPTION VALUE="devyn.htm#start_story">Angel Flight: So Much for So Little');
document.writeln('<OPTION VALUE="pagosa.htm#start_story">Pagosa Springs, CO');
document.writeln('<OPTION VALUE="sfotour.htm#start_story">San Francisco Bay Tour');
document.writeln('<OPTION VALUE="fear.htm#start_story">Fear of Flying');
document.writeln('<OPTION VALUE="biggin.htm#start_story">English Channel Crossing');
document.writeln('<OPTION VALUE="sts.htm#start_story">Sonoma Valley, CA');
document.writeln('<OPTION VALUE="syf.htm#start_story">St Francis, KS');
// The option values end here
document.writeln( '</select>' );
document.writeln( '</form>' );











