//- handles drop downs making them into jump lists
// form must be called "site" select must be called "destination" call this function onchange in the select.
// the first option is reserved for a title -- hence the if condition that selectedindex must be at least 1

function formHandler() {
if (document.site.destination.selectedIndex > 0) {
	var URL = document.site.destination.options[document.site.destination.selectedIndex].value;
	window.location = URL;
	}
}
