function formHandler(){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

document.write('<form name="form">');
document.write('<select name="site" size=1>');
document.write('<option value="">Quick Find....');
document.write('<option value="">----------');
document.write('<option value="index.html">Home');
document.write('<option value="">----------');
document.write('<option value="3canoe.html">3 day Canoe');
document.write('<option value="3canhike.html">3 day Canoe/Hike');
document.write('<option value="4canoe.html">4 day Canoe');
document.write('<option value="killarney.html">4 day Killarney Canoe');
document.write('<option value="5canoe.html">5 day Canoe');
document.write('<option value="barron.html">Barron Canyon Canoe');
document.write('<option value="Algonquin-Explorer.html">Algonquin Explorer');
document.write('<option value="horseback.html">Horseback Trail Riding');
document.write('<option value="women.html">Women Only Canoe');
document.write('<option value="Men-Only.html">Men Only Canoe');
document.write('<option value="">----------');
document.write('<option value="Dogsled-daytrips.html">Dog Sledding Daytrips');
document.write('<option value="multiadv.html">Canadian Experience');
document.write('<option value="Dogsled.html">Dog Sledding Weekends');
document.write('<option value="snowwalker.html">Path of the Snow Walker');
document.write('<option value="Dognew.html">New Years Eve');
document.write('<option value="sledhal.html">3 day Snowmobile');
document.write('<option value="rap.html">5 day Snowmobile');
document.write('<option value="">----------');
document.write('<option value="schedule-canoe.html">Summer Schedule/Prices');
document.write('<option value="schedule-dogsled.html">Winter Schedule/Prices');
document.write('<option value="">----------');
document.write('<option value="teambuilding.html">Team Building');
document.write('<option value="">----------');
document.write('<option value="http://www.AlgonquinEcoLodge.com">Algonquin Eco-Lodge');
document.write('<option value="">----------');
document.write('<option value="gallery.html">Photo Gallery');
document.write('<option value="canoevideo.html">Videos');
document.write('<option value="downloads.html">Free Stuff');
document.write('<option value="">----------');
document.write('<option value="lastminutespecials.html">Last Minute Specials');
document.write('<option value="">----------');
document.write('<option value="https://www.callofthewild.ca/secure/reservations.html">Reservations');
document.write('<option value="wildinfo.html">Info Request');
document.write('<option value="who.html">Contact Us');
document.write('</select>');
document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');