<!-- Begin
function selectaplace(form) {
var appname= navigator.appName;
var appversion=parseInt(navigator.appVersion);
if (appname == "Netscape" && appversion >= 3) {
var formindex=form.select1.selectedIndex;
var storage=form.select1.options[formindex].text;
if (form.select1.options[formindex].value != "none") {
var msg=storage+"You are now being transferred to the -> "+storage;
for (var spot=0;spot<msg.length-storage.length;spot++) {
var x=msg.substring(spot,msg.length);
form.select1.options[formindex].text=x;
for(var d=0;d<150;d++) { };
}
window.location=form.select1.options[formindex].value;
form.select1[formindex].text=storage;
} else  {
form.select1[formindex].text="Not a real option!";
for(var d=0;d<1250;d++) { };
form.select1[formindex].text=storage;
   }
}
else {
var formindex=form.select1.selectedIndex;
window.location=form.select1.options[formindex].value;
   }
}
function makeMyMenu() {
document.write ('<form><select name="select1" onChange="selectaplace(this.form)" size=1>');
document.write ('<option value=index.htm><------------Click here to select a product------------>');
document.write ('<option value=products.htm>All Howard Products');
document.write ('<option value=products/orange_oil.htm>Orange Oil');
document.write ('<option value=products/feed-n-wax.htm>Feed-N-Wax');
document.write ('<option value=products/restor-a-finish.htm>Restor-A-Finish');
document.write ('<option value=products/tung_oil.htm>Tung Oil');
document.write ('<option value=products/orange_tung_oil.htm>Orange Tung');
document.write ('<option value=products/restor-a-shine.htm>Restor-A-Shine');
document.write ('<option value=products/citrus-shield.htm>Citrus-Shield Wax');
document.write ('<option value=products/clean-a-finish.htm>Clean-A-Finish');
document.write ('<option value=products/butcher-block-conditioner.htm>Butcher Block Conditioner');
document.write ('<option value=products/steel-wool.htm>#0000 Steel Wool');
document.write ('<option value=products/fix_stix.htm>Fix Stix');
document.write ('<option value=products/sunwax.htm>Sunwax');
document.write ('<option value=products/naturals.htm>Naturals Range');
document.write ('<option value=products/naturals_furniture.htm>Naturals Furniture Care Collection');
document.write ('<option value=products/naturals_kitchen.htm>Naturals Kitchen Care Collection');
document.write ('<option value=products/naturals/naturals_wood_clean.htm>Wood Cleaner and Polish (Naturals)');
document.write ('<option value=products/naturals/naturals_wood_preserve.htm>Wood Preserver (Naturals)');
document.write ('<option value=products/naturals/naturals_upholstery.htm>Upholstery Cleaner (Naturals)');
document.write ('<option value=products/naturals/naturals_granite.htm>Granite & Marble Cleaner (Naturals)');
document.write ('<option value=products/naturals/naturals_kit_cab.htm>Kitchen Cabinet Cleaner & Polish (Naturals)');
document.write ('<option value=products/naturals/naturals_steel.htm>Stainless Steel Cleaner & Polish (Naturals)');
document.write ('<option value=products/copper_polish.htm>Copper and Brass Polish');
document.write ('<option value=products/silver_polish.htm>Silver Polish');
document.write ('<option value=products/sofas-n-saddles.htm>Sofas-N-Saddles (Leather Care)');
document.write ('</select>');
document.write ('</form>');
}
makeMyMenu();

// End -->
