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 Chapter</option>'+
'<option value="decision.html">Make the Right Decision</option>'+
'<option value="my_decision.html">What I Have Decided to Do</option>'+
'<option value="facts.html">Getting the Eye Opening Facts</option>'+
'<option value="power.html">Don\'t Underestimate Its Power</option>'+
'<option value="expect.html">Here is What You Can Expect</option>'+
'<option value="families.html">It\'s Tearing Up Families Everywhere</option>'+
'<option value="disease.html">Addiction\'s a Disease</option>'+
'<option value="epidemic.html">It\'s a Problem of Epidemic Proportion</option>'+
'<option value="terrorist.html">The Money Helps the Terrorist</option>'+
'</select><input type="button" value="Go!" onclick="warp()" onkeypress="warp()" /></form>');
