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="aboutus.html">About Us-Front Page');
document.write('<option value="location.html">&nbsp; &nbsp;Find Us');
document.write('<option value="faq.html">&nbsp; &nbsp;FAQ');
document.write('<option value="vision.html">&nbsp; &nbsp;Mission \& Vision');
document.write('<option value="beliefs.html">&nbsp; &nbsp;Our Beliefs');
document.write('<option value="values.html">&nbsp; &nbsp;Core Values');
document.write('<option value="p.dann.html">&nbsp; &nbsp;Our Pastor');
document.write('<option value="baptism.html">&nbsp; &nbsp;About Baptism');
document.write('<option value="communion.html">&nbsp; &nbsp;Communion');
document.write('<option value="life.html">Crossroads-Front Page');
document.write('<option value="membership.html">&nbsp; &nbsp;Membership');
document.write('<option value="disc.html">&nbsp; &nbsp;Discipleship Course');
document.write('<option value="sermons.html">&nbsp; &nbsp;Sermons');
document.write('<option value="pix.html">&nbsp; &nbsp;Photos');
document.write('<option value="service.html">&nbsp; &nbsp;Service Opportunities');
document.write('<option value="ministries.html">Ministries-Front Page');
document.write('<option value="mens.html">&nbsp; &nbsp;Men\'s');
document.write('<option value="womens.html">&nbsp; &nbsp;Women\'s');
document.write('<option value="kitchen.html">&nbsp; &nbsp; &nbsp; &nbsp;Crossroad Kitchen');
document.write('<option value="grace.html">&nbsp; &nbsp; &nbsp; &nbsp;GRACE Ministries');
document.write('<option value="teen.html">&nbsp; &nbsp;Teen');
document.write('<option value="youth.html">&nbsp; &nbsp;Youth');
document.write('<option value="fellowship.html">&nbsp; &nbsp;Fellowship Ministries');
document.write('<option value="missions.html">&nbsp; &nbsp;Missions');
document.write('<option value="resources.html">Resources-Front Page');
document.write('<option value="angelfood.html">&nbsp; &nbsp;Angel Food Ministries');
document.write('<option value="contact.html">Contact Us-Front Page');
document.write('<option value="staff.html">&nbsp; &nbsp;Our Staff');
document.write('<option value="story.html">&nbsp; &nbsp;Your Story');
document.write('<option value="prayer.html">&nbsp; &nbsp;Prayer Request');
document.write('<option value="information.html">&nbsp; &nbsp;Information');
document.write('<option value="bible.html">Bible-Front Page');
document.write('<option value="read.html">&nbsp; &nbsp;Read Thru The Bible');
document.write('<option value="searchbible.html">&nbsp; &nbsp;Search The Bible');
document.write('<option value="study.html">&nbsp; &nbsp;Bible Study');
document.write('<option value="refbooks.html">&nbsp; &nbsp;Reference Books');
document.write('<option value="events.html">Events');
document.write('<option value="bulletin.html">Weekly Bulletin');
document.write('</select>');
document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');