<!--


// Array Function

function makeArray() {
var args = makeArray.arguments;
	for (var i=0; i < args.length; i++) {
	this[i] = args[i];
	}
this.length = args.length;
}

// This Array Holds the Descriptions and Names of the Pages.

var pages = new makeArray("Select a Page",
"Home",
"Go Play In Space (free eBook) - by Bruce Irving",
"Orbiter Links",
"Orbiter Add-ons",
"Orbiter Tutorials",
"Orbiter Add-on Software, Utilities and Tutorials",
"Orbiter Videos",
"Other Space Simulator Software",
"-----------------------",
"To the Moon in 24 Hours - Tutorials & Links",
"Rocket Company DH-1 Add-on Development",
"Mars For Less",
"My Tutorials",
"My Orbiter Addons",
"My Orbiter Scenarios",
"Orbiter Lunar Base Reviews",
"Orbiter CD, DVD Covers  and Poster",
"----------------------",
"Space News and Discussion",
"Project Constellation Links",
"General Spaceflight Links",
"Future Space Exploration Concepts,Studies and Plans",
"Associated Space Technology Links",
"Cancelled and Alternative Spacecraft Projects",
"Futuristic Aerospace Projects",
"Cancelled Aircraft Projects",
"Space Agencies",
"Unmanned Space Programs",
"Space Companies",
"Personal Links Page");
// This Array Holds the URLsof the Pages.

var urls = new makeArray("",
"index.htm",
"play_in_space.htm",
"orbiter_links.htm",
"orbiter_addons.htm",
"orbiter_tutorials.htm",
"addon_software_utilities_tutorials.htm",
"orbiter_videos.htm",
"other_spacesims.htm",
"index.htm",
"ttm24_tutorials_index.htm",
"rocket_co_dh1.htm",
"mars_for_less.htm",
"my_tutorials.htm",
"my_orbiter_addons.htm",
"my_orbiter_scenarios.htm",
"lunar_operations.htm",
"orbiter_stuff.htm",
"index.htm",
"space_news.htm",
"project_constellation.htm",
"space_links.htm",
"exploration_concepts.htm",
"associated_technologies.htm",
"cancelled_spacecraft_projects.htm",
"future_aerospace.htm",
"cancelled_aircraft_projects.htm",
"space_agencies.htm",
"unmanned_programs.htm",
"private_space.htm",
"personal_links.htm");

// This Function determines which page is selected and goes to it.

function goPage(form) {
i = form.menu.selectedIndex;
	if(i!=0) {
	window.location.href = urls[i];
	}
}


//-->