function gotoPage() {
  v_location = document.login_form.listItem.options[document.login_form.listItem.selectedIndex].value;
  if( v_location ) {
	window.location = v_location;
  } else {
   alert( 'Please make a selection.' );
  }
} //gotoPage


