//go to the pulldown url
function gotoURL(thisPulldown) {
	if (thisPulldown) {
		window.location = thisPulldown.options[thisPulldown.selectedIndex].value;
		return true;
	} else {
		return false;
	}
}