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 style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px;" name="site" size=1');
document.write('<>Jump to...');
document.write('<option style="font-weight: bold;" value="#" align="middle" >Quick Links');
document.write('<option value="#">---------------');
document.write('<option value="../index.html">Home Page');
document.write('<option value="../saywhat/lettering.htm">Lettering');
document.write('<option value="../prod_index.htm">Product Index');
document.write('<option value="../proceed/index.htm">PROCEED finishes');
document.write('<option value="../productpages/brush_order.htm">Supplies');
document.write('<option value="../productpages/books.htm">Books & DVDs');
document.write('<option value="../productpages/quick_order.htm">Quick Order');
document.write('<option value="#">');
document.write('<option value="#" style="font-weight: bold;" align="middle" >-Stencil Categories-');
document.write('<option value="../productpages/animals.htm">Animals');
document.write('<option value="../productpages/specinterest.htm">Childrens');
document.write('<option value="../productpages/classic_1.htm">Classic');
document.write('<option value="../productpages/botanical_1.htm">Florals');
document.write('<option value="../productpages/fruits.htm">Fruits');
document.write('<option value="../productpages/garden.htm">Garden');
document.write('<option value="../productpages/rainforest_theme.htm">Rainforest');
document.write('<option value="../productpages/specinterest.htm">Spec. Interest');
document.write('<option value="../productpages/classic_1.htm">Trompe l’oeil');
document.write('<option value="../productpages/nautical.htm">Tropical Reef');
document.write('<option value="../productpages/leafy.htm">Vines/Branches');
document.write('<option value="../productpages/wisteria.htm">Wisteria');
document.write('</select>');
document.write('<img src="../images/goto.gif" align="middle" hspace="2" onClick="javascript:formHandler()">');
document.write('</form>'); 