// CREDITS:
// Drop-Down-Menu
// by Urs Dudli and Peter Gehrig
// 2/11/2002
// Copyright (c) 2002 Peter Gehrig and Urs Dudli. All rights reserved.
// Permission given to use the script provided that this notice remains as is.
// Additional scripts can be found at http://www.24fun.com
// info@24fun.com

// IMPORTANT:
// If you add this script to a script-library or a script-archive
// you have to insert a a highly visible link to http://www.24fun.com
// right into the webpage where the script will be displayed.
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="_top"
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
}
}
}