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">Dealing With Depression</option>'+
'<option value="02.html">I\'m Feelin\' a Little Depressed</option>'+
'<option value="03.html">It\'s Hard to Admit</option>'+
'<option value="04.html">Life Seems Just a Little Unfair</option>'+
'<option value="05.html">No More Mister Nice Guy</option>'+
'<option value="06.html">Searching to Find Me the Truth</option>'+
'<option value="07.html">This Anger Needs to Go</option>'+
'<option value="08.html">Why Have You Forsaken Me</option>'+
'</select><input type="button" value="Go!" onclick="warp()" onkeypress="warp()" /></form>');
