function checkDECustomerNumber(custnum) {
  var re1 = /^\d{6}$/;
  return re1.test(custnum);
}