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="">See Past Videos');
document.write('<option value="index.html">Home');
document.write('<option value="12_Steps_promo.html">Take 12 Steps Promo');
document.write('<option value="HatSunday.html">Hat Sunday');
document.write('<option value="Lance_3-8-09.html">Rev. Lance Lawshe 3-8-09');
document.write('<option value="WhyVote.html">Why Vote');
document.write('<option value="HolyWeen08.html">HolyWeen 2008');
document.write('<option value="TheSmithFamily.html">The Smith Family');
document.write('<option value="ManUp.html">Man Up');
document.write('<option value="Leadership_and_more.html">Leadership and More');
document.write('<option value="TechnologyMinistriesCommercial.html">Technology Ministries');
document.write('<option value="HolyWeen2k7.html">HolyWeen2k7');
document.write('<option value="HolyWeen2k7Promos.html">HolyWeen2k7 Promos');
document.write('<option value="BeforeAfterFlashback.html">Drama Skit Flashback');
document.write('</select>');
document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');
