function popUpNava() {
	var popup = document.PopUpMenu.relay;
	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=popUpNava(); name=relay>")
document.write("<option selected>Please select</option>")
document.write("<option>--------------------</option>")
document.write("<option value=product/c-relayautomotive.asp?content>Automotive</option>")
document.write("<option value=product/c-dcpowerrelay.asp?content>DC Power</option>")
document.write("<option value=product/c-relaygp.asp?content>General Purpose</option>")
document.write("<option value=product/c-relayhf.asp?content>High Frequency</option>")
document.write("<option value=product/c-relaymosfet.asp?content>MOS FET</option>")
document.write("<option value=product/c-relaypower.asp?content>Power</option>")
document.write("<option value=product/c-relaysignal.asp?content>Signal</option>")
document.write("<option value=product/c-relaysolidstate.asp?content>Solid State</option>")
document.write("</select>")
