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">A New Alert on Terror</option>'+
'<option value="02.html">It\'s Time Saddam Get Out</option>'+
'<option value="03.html">Keep Your Big Mouth Shut</option>'+
'<option value="04.html">The French Can Toast or Fry</option>'+
'<option value="05.html">Where Has He Hidden His Weapons</option>'+
'<option value="06.html">A Day of Shock and Awe</option>'+
'<option value="07.html">Let T.V. Be a Lesson to Others</option>'+
'<option value="08.html">We Did the Right Thing</option>'+
'</select><input type="button" value="Go!" onclick="warp()" onkeypress="warp()" /></form>');
