﻿function up_launchWMItalki(userID,destinationUserID)
{
    if($("WebChatUserId").className=="first none"||!(MangoSpring.plugin.SGPresence.setPresenceCallback))
    {
        return;
    }
    up_launchWM(userID,destinationUserID);
}
function italkiChangePresence(userid,state)
{
    var chatid=$("WebChatUserId");
    if(chatid)
    {
        if(userid.state=="online")
        {
            chatid.className="first";
            chatid.title="";
            
        }else
        {
            chatid.className="first none";
            chatid.title=PB026;
        }
    }
}