mobileMsg = "- Mobile Number.";
mobileMsg2 = "- Do not include 0 as the first digit of cell phone 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";
pinLabel = 'PIN';

function checkPhone()
{
  var a = $('#msisdn_areacode').val().length;
  var p = $('#msisdn_prefix').val().length;
  var s = $('#msisdn_suffix').val().length;

  if (a == 3 && p == 3 && (s == 4 || s == 5)) {
    return true;
  }
  return false;
}
function checkPhone2()
{
  if($('#msisdn_areacode').val().charAt(0) != 0) {
    return true;
  }
  return false;
}
