function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

/*
Event.observe(window, 'load', function() {

  // var form = $('Registration');
  // var text_inputs = form.getInputs('text');
  // text_inputs.invoke('disable');
  Event.observe($('Registration'), 'focus', check_field_value);
})

Event.addBehavior({
  'div#Registration input:focus' : function(e) {
    this.check_field_value('focus');
  },
  'div#Registration input:blur' : function(e) {
    this.check_field_value('blur');
  }
});

function check_field_value(method) {
  if (!this.default_value) {
    this.default_value = this.value;
  }
  if (method == 'focus') {
    if (this.value == this.default_value) {
      this.value = '';
    }
  } else {
    if (this.value == '') {
      this.value = this.default_value;
    }
  }
}

*/
