function openurl(){
if (document.dropdown.menu.options[document.dropdown.menu.selectedIndex].value!="seperator") {
var selectedurl=document.dropdown.menu.options[document.dropdown.menu.selectedIndex].value
var selectedtarget="_blank"
if (selectedtarget=="_self" || selectedtarget=="") {
document.location.href=selectedurl
}
else if (selectedtarget=="_parent" || selectedtarget=="_top"){
parent.document.location.href=selectedurl
}
else if (selectedtarget=="_blank") {
var blankpopup=window.open(selectedurl, "bp", "status=yes,location=yes,toolbar=yes,menubar=yes,resizable=yes,scrollbars=yes,width=780,height=400,top=10,left=10"); }
else {
var whatframe=eval("parent."+selectedtarget)
whatframe.document.location.href=selectedurl
}
}
}
