function openURL()
{ 
// grab index number of the selected option
selInd = document.seminar.form.selectedIndex; 
// get value of the selected option
goURL = document.seminar.form.options[selInd].value;
// redirect browser to the grabbed value (hopefully a URL)
top.location.href = goURL; 
}
 
function openLINK()
{ 
// grab index number of the selected option
selInd = document.registration.form.selectedIndex; 
// get value of the selected option
goURL = document.registration.form.options[selInd].value;
// redirect browser to the grabbed value (hopefully a URL)
top.location.href = goURL; 
}