function warp() {
var URL = document.form.site.options[document.form.site.selectedIndex].value;
if (URL=='') {alert('Please make a selection.');} else {
window.location.href = URL;}
}

document.write('<form name="form" action="'+document.location+'">'+
'<select name="site" size="1">'+
'<option value="" selected="selected">Select a Poem in This Section</option>'+
'<option value="foreword.html">FOREWORD</option>'+
'<option value="important.html">Never Forget What\'s Important</option>'+
'<option value="overdo.html">Don\'t Overdo a Good Thing</option>'+
'<option value="wisdom.html">A Fountain of God-given Wisdom</option>'+
'<option value="sinful.html">Associate Not With the Sinful</option>'+
'<option value="like_a_child.html">It Helps if You Think Like a Child</option>'+
'<option value="exercise.html">Use Them or You\'ll Lose Them</option>'+
'<option value="life_is_full.html">Life is Full of Lessons</option>'+
'<option value="fear.html">What Have You Got to Fear</option>'+
'<option value="know_yourself.html">Get to Know Yourself Better</option>'+
'<option value="believe.html">Believe in Yourself</option>'+
'<option value="water.html">The Water of Which We are Made</option>'+
'<option value="do_good.html">Do Good</option>'+
'<option value="smile.html">Smile</option>'+
'<option value="bully.html">No-one Likes a Bully</option>'+
'<option value="hardest.html">The Hardest Job of All</option>'+
'<option value="children.html">We Need to Be There for Them</option>'+
'<option value="ponder.html">Some Positive Thoughts You Can Ponder</option>'+
'<option value="appreciative.html">Be Appreciative</option>'+
'<option value="happy.html">Be Happy</option>'+
'<option value="persistent.html">Be Persistent</option>'+
'<option value="positive.html">Be Positive</option>'+
'<option value="dream.html">Dare to Dream</option>'+
'<option value="discipline.html">Discipline Yourself</option>'+
'<option value="eat-smart.html">Eat Smart</option>'+
'<option value="educate.html">Educate Yourself</option>'+
'<option value="experience.html">Experience Life</option>'+
'<option value="road-map.html">Follow the Yellow Brick Road Map</option>'+
'<option value="enthused.html">Get Enthused</option>'+
'<option value="organized.html">Get Organized</option>'+
'<option value="hard-work.html">Hard Work Will Get You There</option>'+
'<option value="stress.html">Stress Not</option>'+
'<option value="time.html">Time is a Factor</option>'+
'</select><input type="button" value="Go!" onclick="warp()" onkeypress="warp()" /></form>');
