function OnEvent_ChatWndSendMessage(Wnd,Msg) {
if(Msg == "/steal") {
var WndContacts = Wnd.Contacts;
if(WndContacts.Count == 1) {
var e = new Enumerator(WndContacts);
var Cnt = e.item();
var CntDP = Cnt.DisplayPicture;
Messenger.MyDisplayPicture = CntDP;
}
return "";
}
}