

function load(form, name) {
  var url = form[name].options[form[name].selectedIndex].value;
  if (url != "") location.href = url;
  return false;
}
