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="">Go To ....');
document.write('<option value="">');
document.write('<option value="Catalogs.html">All Catalogues');
document.write('<option value="ScienceFrame.html">Rare Books');
document.write('<option value="BooksAboutBooksFrame.html">Books About Books');
document.write('<option value="MapsFrame.html">Maps &amp; Views');
document.write('<option value="TribalArtFrame.html">Tribal &amp; Ethnographic Arts');
document.write('<option value="Buddhist/pageBuddhist/BuddhistFrame.html">Buddhist Art');
document.write('<option value="Americana/pageAmericana/AmericanaFrame.html">Americana &amp; Objet dArt');
document.write('<option value="PrintsFrame.html">Prints, Paintings, Photographs');
document.write('<option value="Carpet/pageCarpet/CarpetFrame.html">Carpets &amp; Textiles');
document.write('<option value="Wine/WineHome.html">Wine Books &amp; Paraphernalia');
document.write('<option value="RemainderFrame.html">Remainder &amp; New Books');
document.write('<option value="ArchiveSpecials.html">Archive of Specials');
document.write('<option value="http://www.coupdefoudre.org">Coup de Foudre Foundation');
document.write('</select>');
document.write('<input type=button value="go" onClick="javascript:formHandler()">');
document.write('</form>');