  
function DoChatBoxClickGXH(Chatdomian,UID) {
    var strUrlReferrer = location.href;
    var curProtocol = window.location.protocol.split(':')[0];
    var chatUrl = Chatdomian+'/Chat/ChatIndex/' + UID + '?Weburl=' + strUrlReferrer;
    var u = navigator.userAgent;
    if (!!u.match(/AppleWebKit.*Mobile.*/)) {
        chatUrl = Chatdomian + '/Chat/MobileChatIndex/' + UID + '?Weburl=' + strUrlReferrer;
    }
    OpenChatBoxGXH(chatUrl);
}
function OpenChatBoxGXH(url) {
    var iHeight = 630;
    var iWidth = 730;
    var iTop = (window.screen.availHeight - 30 - iHeight) / 2; //获得窗口的垂直位置;
    var iLeft = (window.screen.availWidth - 10 - iWidth) / 2; //获得窗口的程度位置;
    window.open(url, '_blank', 'height=' + iHeight + ', width=' + iWidth + ', top=' + iTop + ', left=' + iLeft + ', toolbar=no, menubar=no, scrollbars=no,resizable=no, location=no, status=no');
}