<!--

/*
Always-visible combo box credit:
JavaScript Kit (http://www.javascriptkit.com)
Over 400+ free JavaScripts here! (keep this credit intact)
*/

//enter "" for current window, "_new" for new window", or "framename" for name of frame
var linktarget=""

function gone(){
if (linktarget=="")
location=document.jumpy.example.options[document.jumpy.example.selectedIndex].value
else if (linktarget=="_new")
window.open(document.jumpy.example.options[document.jumpy.example.selectedIndex].value)
else{
targetobj=eval("window.parent."+linktarget)
targetobj.location=document.jumpy.example.options[document.jumpy.example.selectedIndex].value
}
}
//-->
