
<!--

// Array Function

function makeArray() {
var args = makeArray.arguments;
    for (var i = 0; i < args.length; i++) {
    this[i] = args[i];
    }
this.length = args.length;
}

// This array holds the descriptions and names of the pages.

var pages = new makeArray("Select Another Shopping Page", 
							"Art",
							"Apparel", 
							"Bondage", 
							<!-- "Canes", -->
							"Edgy",
							"Electrical", 
							<!-- "Fetish Wear",  -->
							<!-- "Floggers",  -->
							"Hardware", 
<!-- 							"Leather",  -->
							<!-- "Medical", --> 
							<!-- "New Products", --> 
							"Paddles", 
							"Rods" ); 
							<!-- "Skin Products", --> 
							<!-- "Slappers" -->
							

// This array hold the URLs of the pages.

var urls = new makeArray("",
							"art.htm",
							"appar.htm",
							"bond.htm", 
<!-- 							"canes.htm", -->
							"edgy.htm",
							"electric.htm", 
							<!-- "fettish.htm",  -->
							<!-- "flog.htm", --> 
							"hardw.htm", 
<!-- 							"leather.htm",  -->
<!-- 							"medical.htm", -->
							<!-- "newprod.htm", --> 
							"paddles.htm",
							"rods.htm");
							<!-- "skin.htm", -->
							<!-- "slap.htm" --> 
							

// This function determines which page is selected and goes to it.

function goPage(form) {
i = form.ddmenu.selectedIndex;            
    if (i != 0) {
    window.location.href = urls[i];  
    }
}

//-->


