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 Site Navigation...'); 
document.write('<option value="http://esthervillepubliclibrary.com/index.html">Main Page');
document.write('<option value="http://esthervillepubliclibrary.com/Event.htm">Events');
document.write('<option value="http://esthervillepubliclibrary.com/Adult.htm">Adult Services');
document.write('<option value="http://esthervillepubliclibrary.com/Young.htm">Young Adult Services');
document.write('<option value="http://esthervillepubliclibrary.com/Child.htm">Childrens Services');
document.write('<option value="http://esthervillepubliclibrary.com/photos.htm">Photo Galleries');
document.write('<option value="http://esthervillepubliclibrary.com/Contact.htm">Contact Us');
document.write('<option value="http://esthervillepubliclibrary.com/Friend.htm">Friends of the Library');
document.write('<option value="http://esthervillepubliclibrary.com/Helpful.htm">Helpful Links');
document.write('<option value="http://esthervillepubliclibrary.com/Homework.htm">Homework Help');
document.write('<option value="http://esthervillepubliclibrary.com/Local.htm">Local Info');
document.write('<option value="http://10.0.10.2">Our Online Catalog');
document.write('<option value="http://z3950.silo.lib.ia.us/cgi-bin/zform.CGI?SILO">State of Iowa Libraries');
document.write('<option value="http://search.epnet.com/">EBSCO');
document.write('</select>'); 
document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');
