//<!---

function goURL(dropdown) {
	thisURL = dropdown.options[dropdown.selectedIndex].value;
	if (thisURL == "") {
		return false;
	}
	location.href = thisURL;
	return true;
}

//--->
