//**************************************************************

  function checkInputLength(object, length) {
    if (object.value.length > length) {
      alert("This input field can only be " + length + " characters long.");
      object.value = object.value.substring(0, length);
    }
  }

//**************************************************************

