/*
SOME FUNCTIONS USED ON WTFCALLS.*
*/

function SelectAll(id) {
    document.getElementById(id).focus();
    document.getElementById(id).select();
}

function autotab(cur_field, char_max, next_field){
  if (cur_field.value.length == char_max){
    next_field.focus();
    next_field.select();
  }
}
