﻿
mobileMsg = '- Mobile Number.';
operatorMsg = '- Operator.';
alertMsg1 = 'The following information is missing or invalid:';
alertMsg2 = 'Please make sure you have provided the above information correctly before submitting the data.';
pinCodeMsg = 'Please enter the PIN';

function checkPhone()
{
  var phoneValue = $('#msisdn').val();
  var pattern = /(^(91|93|96)[0-9]{7})|(^(925|926|927)[0-9]{6})|(^123[0-9]{6})/;

  return pattern.test(phoneValue);
}

function checkPhoneLength(obj)
{
  obj.maxLength = 9;
}

