
function validInn(strInn) {
  var bOk = false;
  if (strInn.search(/^\s{10}$/) == 0) {
    // Пользователь хочет без ИНН - нужно 10 пробелов
    bOk = true;
  }
  if (strInn == "0") {
    bOk = true;
  };
  if (strInn.search(/^\d{5}$/) == 0) {
    // КИО
    bOk = true;
  };
  if (strInn.search(/^\d{10}$/) == 0) {
    bOk = true;
  }
  if (strInn.search(/^\d{12}$/) == 0) { 
    bOk = true;
  }
  return bOk;
}


function ValidAccountKey(strBankBic, strAccount) {
  return true;
}


function isKommerBank(cBic) {
  return cBic.substr(6, 3) >= "050";
}

function validDate(cDate) {
  return true;
}

