function popUpNavb() {
	var popup = document.PopUpMenu.switches;
	var LocString = popup.options[popup.selectedIndex].value;

	if (LocString != "") {
		LocSearch = LocString.indexOf("?");
		
		if (LocSearch > 0) {
			LocURL = LocString.split("?");
			LocTarget = LocURL[1];
		}
		else {
			LocURL = LocString;
			LocTarget = "content";
		}
		
		window.open(LocURL[0], LocTarget);
	}
}
// -->

document.write("<select onchange=popUpNavb(); name=switches>")
document.write("<option selected>Please select</option>")
document.write("<option>--------------------</option>")
document.write("<option value=product/c-switchdip.asp?content>DIP</option>")
document.write("<option value=product/c-switchdome.asp?content>Dome</option>")
document.write("<option value=product/c-switchdoor.asp?content>Door</option>")
document.write("<option value=product/c-switchbasic.asp?content>Microswitch</option>")
//document.write("<option value=product/c-switchpushbutton.asp?content>Pushbutton</option>")
document.write("<option value=product/c-switchrocker.asp?content>Rocker</option>")
document.write("<option value=product/c-switchtactile.asp?content>Tactile</option>")
document.write("<option value=product/c-switchthumbwheel.asp?content>Thumbwheel</option>")
document.write("</select>")
