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="01.html">It\'s Going to Take Some Prayer</option>'+
'<option value="02.html">I Had to Learn it Somewhere</option>'+
'<option value="03.html">Some Things That Make Me Angry</option>'+
'<option value="04.html">That\'s Why They Call It Mad</option>'+
'<option value="05.html">Time to Axe My Anger</option>'+
'</select><input type="button" value="Go!" onclick="warp()" onkeypress="warp()" /></form>');
