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="">Go to....');
document.write('<option value="http://www.fishingportrenfrew.ca/charters.html">Fishing charters');
document.write('<option value="http://www.fishingportrenfrew.ca/report.html">Fishing report');
document.write('<option value="http://www.fishingportrenfrew.ca/weather.html">Weather');
document.write('<option value="http://www.fishingportrenfrew.ca/lastminutecharters.html">Last-minute charters');
document.write('<option value="http://www.fishingportrenfrew.ca/fillacharter.html">Fill-a-charter');
document.write('<option value="http://www.fishingportrenfrew.ca/fishing.html">Fishing info');
document.write('<option value="http://www.fishingportrenfrew.ca/derbies.html">Fishing derbies');
document.write('<option value="http://www.fishingportrenfrew.ca/links.html">Area info and links');
document.write('<option value="http://www.fishingportrenfrew.ca/realestate.html">Real estate');
document.write('<option value="http://www.fishingportrenfrew.ca/accommodations.html">Accommodation');
document.write('<option value="http://www.fishingportrenfrew.ca/recipes.html">Recipes');
document.write('<option value="http://www.fishingportrenfrew.ca/rates.html">Advertising with us');
document.write('<option value="http://www.fishingportrenfrew.ca/rates.html">Web hosting and design');
document.write('<option value="http://www.fishingportrenfrew.ca/rates.html">Rates and policies');
document.write('<option value="http://www.fishingportrenfrew.ca/gallery.html">Photo gallery');
document.write('<option value="http://www.fishingportrenfrew.ca/contact.html">Contact us');
document.write('<option value="http://www.fishingportrenfrew.ca/index.html">Home page');
document.write('</select>');
document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');
