function formHandler(){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

document.write('<form name="form">');
document.write('<select name="site" size=1>');
document.write('<option value="">Recent Press...');
document.write('<option value="http://www.rwanational.com/awards/ritabfb.stm">RITA Awards');
document.write('<option value="http://www.prweb.com/releases/2002/2/prweb34150.php">RRT Best Anthology');
document.write('<option value="affaire.html">Affaire de Coeur');
document.write('<option value="ppost.html">Paradise Post');
document.write('<option value="buzz.html">The Buzz');
document.write('<option value="riposte.html">The Riposte');
document.write('<option value="http://www.bookbrowser.com/Reviews/CampbellGlynnis/champion.html">BookBrowser');
document.write('<option value="http://www.books-worth-reading.com/cgibin/mpage.cgi?mid=19&start=1331">Books-Worth-Reading');
document.write('</select>');
document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');



