function popUpNavd() {
	var popup = document.PopUpMenu.connector;
	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=popUpNavd(); name=connector>")
document.write("<option selected>Please select</option>")
document.write("<option>--------------------</option>")
document.write("<option value=product/c-fpc.asp?content>FPC</option>")
document.write("<option value=product/c-others.asp?content>Others</option>")
document.write("</select>")
