function popUpNavc() {
	var popup = document.PopUpMenu.photomicro;
	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=popUpNavc(); name=photomicro>")
document.write("<option selected>Please select</option>")
document.write("<option>--------------------</option>")
document.write("<option value=product/c-photomicro_amp.asp?content>Amplified</option>")
document.write("<option value=product/c-microphotonic.asp?content>Microphotonic</option>")
document.write("<option value=product/c-photomicro_nonamp.asp?content>Non-Amplified</option>")
//document.write("<option value=product/c-photocoupler.asp?content>Photocoupler</option>")
document.write("</select>")
