void GotUidWithGuest()
    {
        string deviceID;

        if (Application.platform == RuntimePlatform.IPhonePlayer)
        {
            deviceID = IOSMgr.GetMsg();
        }
        else
        {
            deviceID = SystemInfo.deviceUniqueIdentifier;
        }
        mDeviceEvent = new CheckMemberDeviceEvent(new EventDelegate(this, "GuestClicked2"));
        NetMgr.CheckMemberDevice(deviceID, mDeviceEvent);
    }