<!--
function go_there(form) {
	var theindex = document.forms[form].where_to.selectedIndex;
	var go_to = document.forms[form].where_to.options[theindex].value;
    if (go_to != "NO") { window.location.href = go_to; }
}
//-->
