function selectNav(thisForm,thisSelect,thisVal) {
	if (thisSelect == "manufacturers") {
		window.location = "/manusort.php?m=" + thisVal;
	} else if (thisSelect == "prod_type") {
		window.location = "/manusort.php?p=" + thisVal;
	}
}

function NetscapeResize() {
      if (innerWidth != origWidth || innerHeight != origHeight) {
		origWidth = innerWidth;
		origHeight = innerHeight;
		location.reload()
		return false
	}
}

if (document.layers) {
	window.captureEvents(Event.RESIZE)
	window.onresize = NetscapeResize();
}

function shopNav(thisForm,thisSelect,thisVal) {
	if (thisSelect == "subcat") {
		window.location = "/shop/subcat.php?c=" + thisVal;
	} else if (thisSelect == "brand") {
		window.location = "/shop/brand.php?r=" + thisVal;
	}

}