/* move to the next field if we've filled up this one */
function moveToNext(curr_field, dest_field) {
  if (curr_field.getAttribute && curr_field.value.length == curr_field.getAttribute('maxlength')) {
    dest_field.focus();
  }
}
