function changePage(newLoc) {
	nextPage = newLoc.options[newLoc.selectedIndex].value
	if (nextPage != "") {
		document.location.href = nextPage
		return false;
	}
}
function goto_URL(object) { 
	window.location.href = object.options[object.selectedIndex].value; 
}

