private string  GetOperator()
        {
            string RetValue;

            RetValue = Options.Operator;
            if (RetValue == String.Empty)
            {
                Options.Operator = RetValue = Microsoft.Phone.Net.NetworkInformation.DeviceNetworkInformation.CellularMobileOperator;
                string Operator = Options.Operator.ToUpper();
            }
            else if (RetValue.ToUpper().IndexOf("PRIVET") >= 0)
            {
                RetValue = "PRIVET";
            }
            else if (RetValue.ToUpper().IndexOf("KORP") >= 0)
            {
                RetValue = "KORP";
            }
            else if (RetValue.ToUpper().IndexOf("JORN") >= 0)
            {
                RetValue = "JORN";
            }
            else if (RetValue.ToUpper().IndexOf("OTHER") >= 0)
            {
                RetValue = "OTHER";
            }

            return(RetValue);
        }