// Launch a redirect from a select list w/o a "go" button.

function subheadHandler(form){
	if (domData.isNN4) {
		var URL = form[form.selectedIndex].value;
	} else {
		var URL = document.navigation.id.options[document.navigation.id.options.selectedIndex].value;
	}
	window.location.href = URL;
} //end subheadHandler


