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">Let&#8217;s Get &#8216;Em Out in the Open</option>'+
'<option value="02.html">Why the Sour Attitude</option>'+
'<option value="03.html">Now Here&#8217;s Why I Have Mine</option>'+
'<option value="04.html">Someone&#8217;s Gonna Get Hurt</option>'+
'<option value="05.html">I&#8217;m Sorry But I Gotta Go</option>'+
'<option value="06.html">Don&#8217;t Want No More Hard Feelings</option>'+
'<option value="07.html">It Isn&#8217;t Only Me</option>'+
'<option value="08.html">You Set the Pace</option>'+
'<option value="09.html">I Can Make It On My Own</option>'+
'<option value="10.html">Take a Look Around You</option>'+
'<option value="11.html">It Seems You Rub It In</option>'+
'<option value="12.html">A Raise Sure Would Have Been Nice</option>'+
'<option value="13.html">You Don&#8217;t Know What You Lost</option>'+
'</select><input type="button" value="Go!" onclick="warp()" onkeypress="warp()" /></form>');
