Helpful to verify reports of your own downtime, or to double check a downed website you are trying to access.
One of a set of tools we are providing to everyone as a way of saying thank you for being a part of the community.
And I assume that you are triggering the function with the onchange event of the select.
with: onChange="pulldown_menu()"
All you have to do is elimnate the hard coded names with
onChange="pulldown_menu(th
And change the function to:
function pulldown_menu(EL)
{
var url = EL.options[EL.selectedInde
// Re-direct the browser to the url value
window.location.href = url
}
Then you can add additional selects in the same format the the present form, or add a new form with additional selects.
Cd&