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="adultcandymold.htm">Adult Chocolate Candy Molds');
document.write('<option value="bachelorgames.htm">Bachelor Party Games - Naughty ');
document.write('<option value="tame-bachelor-games.htm">Bachelor Party Games - Tame ');
document.write('<option value="bachelorwear.htm">Bachelor Party Outfit');
document.write('<option value="bachelorpartyware.htm">Bachelor Party Ware/Favors');
document.write('<option value="bachelorettepartysupplies.htm">Bachelorette Cups, Plates, Napkins');
document.write('<option value="bachettegames.htm">Bachelorette Party Games');
document.write('<option value="bachettewear.htm">Bachelorette Party Outfit');
document.write('<option value="bachelorettetshirts-caps.htm">Bachelorette Shirts, Caps');
document.write('<option value="bachettefavors.htm">Bachelorette Party Favors');
document.write('<option value="bachelorettepartykits-packs.htm">Bachelorette Party Kits');
document.write('<option value="http://www.bridaloccasion.com/partysash.htm">Bachelorette Party Sash');
document.write('<option value="bachettepartyware.htm">Bachelorette Party Ware');
document.write('<option value="blowupinflatablegaggifts.htm">Blow Up, Inflatable Gag Gifts Dolls');
document.write('<option value="fooditems.htm">Cookie Cutters, Cake Pans, Bake Shop & Novelties');
document.write('<option value="naughtygiftwrapping.htm">Gift Wrapping Paper & Bags');
document.write('<option value="lingerie.htm">Lingerie');
document.write('<option value="invitations.htm">Party Invitations');
document.write('<option value="partyballoons.htm">Party Balloons');
document.write('<option value="deco.htm">Party Decorations');
document.write('<option value="partyediblesfood.htm">Party Food & Snacks');
document.write('<option value="gaggift.htm">Party Gag Gifts & Novelties');
document.write('<option value="giftsall.htm">Party Gifts');
document.write('<option value="valentine.htm">Valentine Gifts');
document.write('</select>');
document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');






