function formHandler(){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

document.write('<form name="form"><center>');
document.write('<select name="site" size=1>');
document.write('<option VALUE="menu/index.html">Main Menu');
document.write('<option VALUE="program/index.html">The Ring Leader Recycling Program');
document.write('<option VALUE="join.html">Join the Program');
document.write('<option VALUE="reporter.html">The Ring Leader Reporter');
document.write('<option VALUE="resources/index.html">Educational Resources');
document.write('<option VALUE="partners/index.html">Environmental Partners');
document.write('<option VALUE="feedback.html">Contact ITW Hi-cone');
document.write('<option VALUE="quest/index.html">Quest of the Ring Leaders');
document.write('<option VALUE="indexpage.html">Site Index');
document.write('</select><br></center><img SRC="gifs/pulldown_arrow.gif" border=0 WIDTH="113" HEIGHT="51">');
document.write('<a href="javascript:formHandler(this);"><img src="gifs/pulldown_button1.gif" border=0></a>');
document.write('</form>');