function formHandler(){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}
document.write('<FONT SIZE=-1>');
document.write('<form name="form">');
document.write('<select name="site" size="-1">');
document.write('<option value="http://www.waterfallsofontario.ca">Waterfalls of Ontario');
document.write('<option value="mailto:mark@waterfallsofontario.ca">Email Mark Harris');
document.write('<option value="waterfallogy.html">Waterfall Science');
document.write('<option value="waterfallinginontario.html">Waterfalling in Ontario');
document.write('<option value="aboutwaterfallsofontario.html">About this page');
document.write('<option value="w_linksandtools.html">Waterfall Links and Tools');
document.write('<option value="updateinventory.html">Add/modify a waterfall');
document.write('<option value="mapindex.html">Map Index');
document.write('<option value="w_region_algoma.html">- Algoma Region');
document.write('<option value="w_region_cottage_country.html">- Cottage Country Region');
document.write('<option value="w_region_golden_horseshoe.html">- Golden Horseshoe Region');
document.write('<option value="w_region_lake_huron.html">- Lake Huron Region');
document.write('<option value="w_region_lakehead.html">- Lakehead Region');
document.write('<option value="w_region_northeast.html">- Northeast Region');
document.write('<option value="w_region_ottawa_valley.html">- Ottawa Valley Region');

document.write('</select>');
document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');