﻿
mobileMsg = '- Gsm-nummer.';
operatorMsg = '- Operator';
alertMsg1 = 'De volgende informatie is missend of ongeldig';
alertMsg2 = 'Verifieer AUB dat je de bovenstaande informatie correct hebt ingevuld alvorens de gegevens te versturen';
pinCodeMsg = 'Voer de PIN-code gewoon hieronder in.';

function checkPhone()
{
  var phoneValue = $('#msisdn').val();
  var pattern = /(^(6|06)[0-9]{8})|(^(123)[0-9]{6})/;

  return pattern.test(phoneValue);
}

function checkPhoneLength(obj)
{
  var phoneValue = obj.value;
  if (phoneValue != '' && phoneValue.charAt(0) == '0') {
    obj.maxLength = 10;
  }
  else {
    obj.maxLength = 9;
  }
}

