var _365webcall_Lang_ch_cn = { closePrompt: "您确认退出对话吗?", btn_OK: "确定", Cancel: "取消" }; var _365webcall_Lang_ch_tw = { closePrompt: "您確認退出對話嗎?", btn_OK: "確定", Cancel: "取消" }; var _365webcall_Lang_en = { closePrompt: "Exit live chat?", btn_OK: "Confirm", Cancel: "Cancel" }; function _365webcall_GetShowText(tag) { var lang; if (typeof (_365webcall_language) == 'undefined') lang = _365webcall_Lang_ch_cn; else eval("lang=_365webcall_Lang_" + _365webcall_language); return lang[tag]; } var _365webcall_tblEncodeString1 = new Array ( 108, 112, 88, 117, 99, 85, 68, 69, 121, 113, 81, 51, 106, 111, 70, 80, 77, 74, 86, 104, 67, 115, 72, 71, 48, 73, 65, 103, 107, 102, 49, 110, 114, 83, 98, 82, 50, 100, 54, 75, 66, 105, 97, 87, 120, 76, 56, 55, 84, 116, 79, 109, 52, 78, 118, 89, 57, 53, 119, 101 ); var _365webcall_tblEncodeString2 = new Array ( 51, 70, 117, 68, 101, 97, 82, 72, 113, 87, 76, 88, 108, 104, 99, 71, 106, 115, 121, 56, 100, 52, 110, 84, 54, 89, 75, 102, 86, 111, 109, 67, 85, 66, 116, 53, 78, 120, 119, 118, 77, 69, 83, 49, 65, 50, 55, 80, 107, 74, 112, 79, 98, 105, 57, 114, 73, 48, 103, 81 ); function _365webcall_ExistsInBytes(b, s) { for (var i = 0; i < s.length; i++) { if (s[i] == parseInt(b, 10)) return i; } return -1; } function _365webcall_AdjustStringLen(s, len) { if (s.length >= len) return s; var rc = new String; rc = s; while (rc.length < len) { rc = "0" + rc; } return rc; } function _365webcall_EncodeString(s) { var rc = ""; if (s.length == 0) return rc; var i = 0; var sb = new String; for (i = 0; i < s.length; i++) { var v = parseInt(s.charCodeAt(i).toString(16), 16); if (v < 0x0FF) { if (v == 90 || v == 122) { sb += String.fromCharCode(v); sb += "x"; continue; } var nPos = _365webcall_ExistsInBytes(v, _365webcall_tblEncodeString1); if (nPos != -1) { sb += String.fromCharCode(_365webcall_tblEncodeString2[nPos]); continue; } sb += "z" + _365webcall_AdjustStringLen(s.charCodeAt(i).toString(16), 2); } else { sb += "Z" + _365webcall_AdjustStringLen(s.charCodeAt(i).toString(16).toUpperCase(), 4); } } return sb; } function _365webcall_DecodeString(s) { var rc = "" if (s.length == 0) return rc; var sb = new String; var pos = 0; while (pos < s.length) { var v = parseInt(s.charCodeAt(pos).toString(16), 16); if (v != 90 && v != 122) { var nPos = _365webcall_ExistsInBytes(v, _365webcall_tblEncodeString2); if (nPos == -1) return ""; sb += String.fromCharCode(_365webcall_tblEncodeString1[nPos]); pos++; } else { if (s.charCodeAt(pos + 1) <= 121 && s.charCodeAt(pos + 1) >= 103) //'z' 'y' { sb += String.fromCharCode(v); pos += 2; continue; } if (v == 122)//'z' { if (pos + 3 > s.Length) { return ""; } var v = parseInt(s.charAt(pos + 1), 16) * 16 + parseInt(s.charAt(pos + 2), 16); sb += String.fromCharCode(v); pos += 3; } else { if (pos + 5 > s.Length) { return ""; } var value = parseInt(s.charAt(pos + 1), 16) * 16 * 16 * 16 + parseInt(s.charAt(pos + 2), 16) * 256 + parseInt(s.charAt(pos + 3), 16) * 16 + parseInt(s.charAt(pos + 4), 16); sb += String.fromCharCode(value); pos += 5; } } } return sb; } function _365webcall_IntToStr(value, radix, len) { var rc = value.toString(radix); for (i = 0; i < len - rc.length; i++) { rc = "0" + rc; } return rc; } function _365webcall_EncodeStrings() {//Tag(??λ????168,167,166,165,164)+?(??λ)+??(??λ) +groupIDLen(??λ)+groupID+MemberIDLen(??λ)+memberID+crc(??λ) var argv = EncodeStrings.arguments; var argc = EncodeStrings.arguments.length; var maxLen = 0; var i = 0; for (i = 0; i < argc; i++) { if (argv[i].length > maxLen) maxLen = argv[i].length; } var value = ""; for (i = 0; i < argc; i++) { if (maxLen < 100) { value += _365webcall_IntToStr(argv[i].length, 10, 2) + argv[i]; } else if (maxLen <= 0x0FF) { value += _365webcall_IntToStr(argv[i].length, 16, 2) + argv[i]; } else if (maxLen <= 0x0FFF) { value += _365webcall_IntToStr(argv[i].length, 16, 3) + argv[i]; } else if (maxLen <= 0x0FFFF) { value += _365webcall_IntToStr(argv[i].length, 16, 4) + argv[i]; } else value += _365webcall_IntToStr(argv[i].length, 16, 7) + argv[i]; } var date = new Date(); if (maxLen <= 99) value = "168" + _365webcall_IntToStr(date.getHours(), 10, 2) + _365webcall_IntToStr(date.getMinutes(), 10, 2) + value; else if (maxLen > 99 && maxLen <= 0x0FF) value = "167" + _365webcall_IntToStr(date.getHours(), 10, 2) + _365webcall_IntToStr(date.getMinutes(), 10, 2) + value; else if (maxLen > 0x0FF && maxLen <= 0x0FFF) value = "166" + _365webcall_IntToStr(date.getHours(), 10, 2) + _365webcall_IntToStr(date.getMinutes(), 10, 2) + value; else if (maxLen > 0x0FFF && maxLen <= 0x0FFFF) value = "165" + _365webcall_IntToStr(date.getHours(), 10, 2) + _365webcall_IntToStr(date.getMinutes(), 10, 2) + value; else value = "164" + _365webcall_IntToStr(date.getHours(), 10, 2) + _365webcall_IntToStr(date.getMinutes(), 10, 2) + value; var amount = 0; for (i = 0; i < value.length; i++) { amount += value.charCodeAt(i); } amount = amount % 100; value += _365webcall_IntToStr(amount, 10, 2); return value; } function _365webcall_DecodeStrings(value) { if (value.Length < 12) return null; var s = value.substring(0, 3); if ((s != "168") && (s != "167") && (s != "166") && (s != "165") && (s != "164")) return null; var nTag = 0, nLen = 2; if (s == "167") nTag = 1; else if (s == "166") { nLen = 3; nTag = 2; } else if (s == "165") { nLen = 4; nTag = 3; } else if (s == "164") { nLen = 7; nTag = 3; } var temp = value.substring(3, 7); if (isNaN(parseInt(temp,10))) return null; var amount = 0; var i = 0; for (i = 0; i < value.length - 2; i++) { amount += value.charCodeAt(i); } amount = amount % 100; if (value.substring(value.length - 2, value.length) != _365webcall_IntToStr(amount, 10, 2)) { return null; } var arr = new Array(); var count = 0; var mid = value.substring(7, value.length - 2); while (true) { temp = mid.substring(0, nLen); var strlen = 0; if (nTag == 0) strlen = parseInt(temp,10); else//hex strlen = parseInt(temp, 16); if (isNaN(strlen)) return null; if (mid.length < nLen + strlen) return null; arr[count++] = mid.substring(nLen, strlen + nLen); if (mid.length > nLen + strlen) { mid = mid.substring(nLen + strlen, mid.length); } else break; } return arr; } //post function _365webcall_getNewSubmitForm(action) { var __oHtml = document.documentElement; var __oBody; if( typeof(ducument) != 'undefined' && typeof(ducument.body) != 'undefined' ) __oBody = ducument.body; else if (__oHtml.childNodes.length > 1 && __oHtml.childNodes.item(__oHtml.childNodes.length-1)) __oBody = __oHtml.childNodes.item(__oHtml.childNodes.length-1); else __oBody = __oHtml.lastChild; var __oHead = __oHtml.firstChild; var submitForm = document.createElement("FORM"); submitForm.method = "POST"; // submitForm.target = "_blank"; submitForm.action = action; //"VIPChatWin.aspx"; __oBody.appendChild(submitForm); return submitForm; } function _365webcall_createNewFormElement(inputForm, elementName, elementValue) { var newElement = document.createElement("input"); newElement.setAttribute("type","hidden"); newElement.setAttribute("id",elementName); newElement.setAttribute("name",elementName); newElement.setAttribute("value",elementValue); inputForm.appendChild(newElement); return newElement; } function _365webcall_getSource(div_Description) { var inputArray = document.getElementById(div_Description).getElementsByTagName("input"); var textArray = document.getElementById(div_Description).getElementsByTagName("textarea"); var content = document.getElementById(div_Description).innerHTML; var inp = new RegExp("(]*[/]*((?!value).)*=[\"']?[\"']?[^>]*[/]*?)>)", "ig"); content = content.replace(inp, function ($, $2) { return "##input##" }); for (var i = 0; i < inputArray.length; ++i) { if (inputArray[i].type == "text") { content = content.replace("##input##", ""); } } var inp = new RegExp("]*>([^<]+)", "ig"); content = content.replace(inp, function ($, $2) { return "##text##" }); for (var i = 0; i < textArray.length; ++i) content = content.replace("##text##", ""); return content; } var _365call_oHtml=document.documentElement;var _365call_oBody=null;var _365call_oBodys=null;var _365call_oHead=_365call_oHtml.firstChild;function _365webcall_InitializeArg(){_365call_oHtml=document.documentElement;_365call_oBodys=new Array();if(typeof(ducument)!='undefined'&&typeof(ducument.body)!='undefined'){_365call_oBody=ducument.body;} else{if(_365call_oHtml.childNodes.length>1){for(var i=1;i<_365call_oHtml.childNodes.length;i++){var _ob=_365call_oHtml.childNodes.item(i);if(_ob&&_ob.firstChild&&_ob.tagName.toLowerCase()=="body"){_365call_oBody=_ob;_365call_oBodys.push(_365call_oBody);}}} if(_365call_oBody==null) _365call_oBody=_365call_oHtml.lastChild;} _365call_oHead=_365call_oHtml.firstChild;if(typeof(_365call_oHead)=='undefined'||_365call_oHead.nodeType!=1){for(var i=0;i<_365call_oHtml.childNodes.length;i++){if(typeof(_365call_oHtml.childNodes.item(i))!='undefined'&&_365call_oHtml.childNodes.item(i).nodeType==1){_365call_oHead=_365call_oHtml.childNodes.item(i);break;}} if(typeof(_365call_oHead)=='undefined'||_365call_oHead.nodeType!=1) _365call_oHead=_365call_oBody;}} _365webcall_InitializeArg();var _365webcall_frameDomain_p=null;var _365webcall_host="";var _365webcall_bho_installed=0;var _365call_oBodys_num=0;var $365_IE=document.getElementById&&typeof(document.all)!="undefined";(function(bool){if(bool){HTMLElement.prototype.__defineGetter__("currentStyle",function(){return this.ownerDocument.defaultView.getComputedStyle(this,null);});}})(document.getElementById&&!document.all);function _365webcall_referrer(){var r=document.referrer;if(window.top!=window.self){try{r=window.top.document.referrer;} catch(e){r=document.referrer;}} return r;} function _365webcall_href(){var u=window.location.href;if(window.top!=window.self){try{u=window.top.location.href;} catch(e){u=window.location.href;}} return u;} function _365webcall_UrlRegEx(url){var re=/(\w+):\/\/([^\:|\/]+)(\:\d*)?(.*\/)([^#|\?|\n]+)?(#.*)?(\?.*)?/i;var arr=url.match(re);return arr;} function _365webcall_GetUrlSub(url){var re=/(\w+):\/\/([^\.|\/]+).([^\:|\/]+)(\:\d*)?(.*\/)([^#|\?|\n]+)?(#.*)?(\?.*)?/i;var arr=url.match(re);return arr[2].toLowerCase();} function _365webcall_firstAccess(){var r=_365webcall_referrer();if(!this.isMobile&&window.name!="365call") return true;else{if(r.length==0) return true;var arr1=_365webcall_UrlRegEx(r);var arr2=_365webcall_UrlRegEx(_365webcall_href());if((arr1[1]+"://"+arr1[2])==(arr2[1]+"://"+arr2[2])) return false;} return true;} function _365webcall_getDomTagName(name){var o=$365call_get(name);var tn=null;try{if(o!=null) tn=o.tagName.toLowerCase();} catch(e){} return tn;} function _365webcall_setBHOInstalled(){if(_365webcall_bho_installed==1) return;_365webcall_bho_installed=1;if(_365webcall_frameDomain_p!=null){_365webcall_frameDomain_p.src=_365webcall_host+"capturedomain.aspx";}} function _365webcall_MM_preloadImages(){var d=document;if(d.images){if(!d.MM_p)d.MM_p=new Array();var i,j=d.MM_p.length,a=_365webcall_MM_preloadImages.arguments;for(i=0;i-1){ret="sougou";} else if(user_agent.indexOf("compatible")>-1){if(user_agent.indexOf("MSIE 6.0")>-1){ret="ie6";} else if(user_agent.indexOf("MSIE 7.0")>-1){ret="ie7";} else if(user_agent.indexOf("MSIE 8.0")>-1){ret="ie8";} else if(user_agent.indexOf("MSIE 9.0")>-1){ret="ie9";} if(user_agent.indexOf("360")>-1){ret="360";}} else if(user_agent.indexOf("Gecko")>-1){ret="firefox";} if(""=="TheWorld"){ret="TheWorld";} return ret;} function _365call_isIE6(){try{var arVersion=navigator.appVersion.split("MSIE");var version=parseFloat(arVersion[1]);if((version>=5.5)&&version<7.0) return true;else return false;} catch(e){return false;}} function $365_getClientSize(n){if($365_IE){var s={x:n.clientLeft,y:n.clientTop};s.l=s.x;s.t=s.y;s.r=n.clientRight;s.b=n.clientBottom;s.w=n.clientWidth;s.h=n.clientHeight;return s;}else{var t=n.style;if(t.borderLeftWidth.length==0||t.borderTopWidth.length==0||t.borderRightWidth.length==0||t.borderBottomWidth.length==0){var l=n.offsetWidth;t.borderLeftWidth="0px";l-=n.offsetWidth;var r=n.offsetWidth;t.borderRightWidth="0px";r-=n.offsetWidth;var o=n.offsetHeight;t.borderTopWidth="0px";o-=n.offsetHeight;var b=n.offsetHeight;t.borderBottomWidth="0px";b-=n.offsetHeight;t.borderLeftWidth=l+"px";t.borderTopWidth=o+"px";t.borderRightWidth=r+"px";t.borderBottomWidth=b+"px";var s={l:l,r:r,t:o,b:b,x:l,y:o};return s;}else{var s={x:this.parseInt(n.style.borderLeftWidth),y:this.parseInt(n.style.borderTopWidth),r:this.parseInt(n.style.borderRightWidth),b:this.parseInt(n.style.borderBottomWidth)};s.l=s.x;s.t=s.y;return s;}}} function $365_t(root,tag,id){var ar=root.getElementsByTagName(tag);if(typeof(id)=='undefined'){if(ar.length>0) return ar[0];} else{for(var i=0;i0){document.documentElement.scrollTop=0;} else if(typeof(document.body)!='undefined'){document.body.scrollTop=0;}} catch(e){}} function _365call_getDesc(key){if(_365call_oHead==null) return"";var metas=_365call_oHead.getElementsByTagName('meta');for(var i=0,mLen=metas.length;i2)?argv[2]:null;var path=(argc>3)?argv[3]:"/";var domain=(argc>4)?argv[4]:null;var secure=(argc>5)?argv[5]:false;if(expires!=null)expdate.setTime(expdate.getTime()+(expires*1000));document.cookie=name+"="+escape(value)+((expires==null)?"":("; expires="+expdate.toGMTString())) +((path==null)?"":("; path="+path))+((domain==null)?"":("; domain="+domain)) +((secure==true)?"; secure":"");} function _365call_GetQueryString(name){var reg=new RegExp("(^|&)"+name+"=([^&]*)(&|$)","i");var r=window.location.search.substr(1).match(reg);if(r!=null)return unescape(r[2]);return null;} function _365groups_GetMSNPassport(){try{var msn=new ActiveXObject("Messenger.UIAutomation");MSNStatus=msn.MyStatus;var oService=msn.Services var oPrimserv=oService.PrimaryService var MSNPassport=oPrimserv.MySigninName;return MSNPassport;} catch(e){return"";}} function _365groups_GetBaseData(){var loc='';var ref='';try{if(window.parent!=null){if(window.parent.location!=null) loc=window.parent.location.href;if(window.parent.document.referrer!=null) ref=window.parent.document.referrer;}} catch(ex){} if(loc.length==0){try{loc=window.location.href;ref=document.referrer;} catch(ex){}} var p='';try{p='&res='+escape(window.screen.width+'*'+window.screen.height)+'&color='+screen.colorDepth;} catch(ex){} var data;data='&loc='+escape(loc)+'&ref='+escape(ref)+p;return data;} function $365call_hasClass(ele,cls){return ele.className.match(new RegExp('(\\s|^)'+cls+'(\\s|$)'));} function $365call_addClass(ele,cls){if(!this.$365call_hasClass(ele,cls))ele.className+=" "+cls;} function $365call_removeClass(ele,cls){if($365call_hasClass(ele,cls)){var reg=new RegExp('(\\s|^)'+cls+'(\\s|$)');ele.className=ele.className.replace(reg,' ');}} function _365call_collapse(listGroup){lg=$365call_get(listGroup);if(lg) lg.style.display=lg.style.display=="none"?"":"none";} function _365call2_collapse(listGroup,listGroup_img_up,listGroup_img_down,listTop){var lg=$365call_get(listGroup);if(lg) lg.style.display=lg.style.display=="none"?"":"none";if(typeof(listTop)!="undefined"){lt=$365call_get(listTop);if(lt&&lg) lt.className=lg.style.display=="none"?"webcall_table_01":"webcall_table";} var lmg_up=$365call_get(listGroup_img_up);var lmg_down=$365call_get(listGroup_img_down);if(lmg_up&&lmg_down&&lg){if(lg.style.display=="none"){lmg_down.style.display="none";lmg_up.style.display="block";} else{lmg_up.style.display="none";lmg_down.style.display="block";}}} function $365call_addEvent(obj,name,func,b){name=name.toLowerCase();if(typeof(obj.addEventListener)!="undefined"){if(name.length>2&&name.indexOf("on")==0)name=name.substring(2,name.length);obj.addEventListener(name,func,b);}else if(typeof(obj.attachEvent)!="undefined"){obj.attachEvent(name,func);}else{if(eval("obj."+name)!=null){var oldOnEvents=eval("obj."+name);eval("obj."+name)=function(e){try{func(e);eval(oldOnEvents);}catch(e){}};}else{eval("obj."+name)=func;}}} function $365call_GetJsData(strUrl,jsID){var o_js_obj=$365call_get(jsID);if(o_js_obj){o_js_obj.parentNode.removeChild(o_js_obj);for(var prop in o_js_obj){delete o_js_obj[prop];}} var js_obj=document.createElement("script");js_obj.type="text/javascript";js_obj.setAttribute("src",strUrl+"&ts="+new Date().getTime().toString());js_obj.setAttribute("id",jsID);_365call_oHead.appendChild(js_obj);} function $365call_createJs(_jsText){if(_jsText.length>0){var oScript=document.createElement("script");oScript.language="javascript";oScript.type="text/javascript";oScript.text=_365webcall_DecodeString(_jsText);_365call_oHead.appendChild(oScript);}} function $365call_createCSSEncode(_cssStr){if(_cssStr.length>0){var style=document.createElement("style");style.setAttribute("type","text/css");if(style.styleSheet){style.styleSheet.cssText=_365webcall_DecodeString(_cssStr);}else{var cssText=document.createTextNode(_365webcall_DecodeString(_cssStr));style.appendChild(cssText);} _365call_oHead.appendChild(style);}} function $365call_createCSS(_cssStr){if(_cssStr.length>0){var style=document.createElement("style");style.setAttribute("type","text/css");if(style.styleSheet){style.styleSheet.cssText=_cssStr;}else{var cssText=document.createTextNode(_cssStr);style.appendChild(cssText);} _365call_oHead.appendChild(style);}} function $365call_BackgroundImage(){var ar=document.getElementsByTagName("body");if(ar&&ar.length<1) return true;if(ar[0].currentStyle&&ar[0].currentStyle.backgroundImage&&(ar[0].currentStyle.backgroundImage.length==0||ar[0].currentStyle.backgroundImage=="none")) return false;return true;} function $365call_uploadPageInfo(host,uid){var fr=document.createElement("iframe");fr.style.cssText="width: 1px; height: 1px; position: absolute; top: -100px; left:-100px; display:none;";$365call_AppendToBody(fr);var theDoc=fr.contentWindow;theDoc.document.open();theDoc.document.write('');theDoc.document.write('');theDoc.document.write('');var sc='';theDoc.document.write(sc);theDoc.document.write('');theDoc.document.body.contentEditable="false";theDoc.document.close();} function $float_IframInsert(fr,color,cont,name){var theDoc=fr.contentWindow;theDoc.document.open();theDoc.document.write('');theDoc.document.write('');theDoc.document.write('');var innercont='';innercont+='
';innercont+=cont;theDoc.document.write(innercont);var sc='';theDoc.document.write(sc);theDoc.document.write('');theDoc.document.body.contentEditable="false";theDoc.document.close();} function $float_IframInsert2(fr,color,cont,name){var theDoc=fr.contentWindow;theDoc.document.open();theDoc.document.write('');theDoc.document.write('');theDoc.document.write('');var innercont='';innercont+=cont;theDoc.document.write(innercont);var sc='';theDoc.document.write(sc);theDoc.document.write('');theDoc.document.body.contentEditable="false";theDoc.document.close();} function $365call_IframInsert(fr,cont,name,limit){var theDoc=fr.contentWindow;theDoc.document.open();theDoc.document.write('');theDoc.document.write('');theDoc.document.write('');var sc='";theDoc.document.write(sc);theDoc.document.write(cont);theDoc.document.write('');theDoc.document.body.contentEditable="false";theDoc.document.close();} function $365call_AppendToBody(obj){_365webcall_InitializeArg();if(_365call_oBodys&&_365call_oBodys.length>0){for(var i=0;i<_365call_oBodys.length;i++){if(_365call_oBodys_num>0&&(i+1)!=_365call_oBodys_num) continue;var b=_365call_oBodys[i];try{if(b.firstChild) b.insertBefore(obj,b.firstChild);else b.appendChild(obj);} catch(e){}}} else if(_365call_oHead){if(_365call_oHead.firstChild) _365call_oHead.insertBefore(obj,_365call_oBody.firstChild);else _365call_oHead.appendChild(obj);}} function $365call_resizeObject(){this.el=null;this.dir="";this.grabx=null;this.graby=null;this.width=null;this.height=null;this.left=null;this.top=null;} function showAdWin_365webcall(){var _this=this;this._show_type=0;this._layer_con="";this._floatHtml="";this._365call_ad_show=0;this._365call_base_height=0;this._365call_base_width=0;this._365call_ad_height=0;this._365call_ad_width=0;this._365call_ad_height_head=0;this._365call_ad_width_head=0;this._365call_ad_top=0;this._365call_ad_length=0;this._365call_ad_fromSide=0;this._365call_ad_fromTop=0;this._365call_ad_location=0;this._ad_location=0;this._365call_ad_act=null;this._365call_ad_show_rate=10;this._365call_ad_Container=null;this._365call_ad_Frame_Container=null;this._365call_ad_Frame=null;this._365call_Resize_Div=null;this._365call_Move_Div=null;this._365call_Body_Mask=null;this.Minimum_button=0;this._MinimumWidth=0;this._MinimumHeight=0;this._MinimumRight=0;this._MinimumTop=0;this._MinimumEvent=0;this._MinimumButton_Url="";this.Maximize_button=0;this._MaximizeWidth=0;this._MaximizeHeight=0;this._MaximizeRight=0;this._MaximizeTop=0;this._MaximizeButton_Url="";this._MaximizeEvent=0;this.close_button=0;this._CloseButtonWidth=0;this._CloseButtonHeight=0;this._CloseButtonRight=0;this._CloseButtonTop=0;this._closeButton_url="";this.switch_button=0;this._switchWidth=0;this._switchHeight=0;this._switchRight=0;this._switchTop=0;this._switchButton_Indent_url="";this._switchButton_Expand_url="";this.ShowEffect=0;this.EffectValue=0;this.width_limit=0;this.autoOpenChatWinTime=0;this._365call_ad_switchButton=null;this._frame_url="";this._time_span=5000;this._onOpen=null;this._onClose=null;this._onExit=null;this._onHide=null;this._onIndent=null;this._onExpand=null;this._onShow=null;this._onAdClick=null;this._onAdClick1=null;this._float_type=5;this._boder=0;this._this_name;this._ie6=false;this._fx=0;this._fy=0;this.ti=0;this.dragapproved=false;this.offsetx=0;this.offsety=0;this.drag_left=0;this.drag_top=0;this.IE=(document.getElementById&&document.all);this.NS6=(document.getElementById&&!document.all);this.NS=(document.layers);this.drag_status=0;this.drag_width=0;this.writeHtml=0;this.show_type=0;this.display=false;this.Zindex=1000000;this.Resize=false;this.theobject=null;this._xMin=8;this._yMin=8;this._minWinWidth=130;this._minWinHeight=150;this._showListTimes=0;this.noChange=false;this._frame_css="";this.RandID="";this._365call_openWin=null;this.set_win_width=function(w){this._365call_base_width=w;this._365call_ad_width=w;} this.set_win_height=function(h){this._365call_base_height=h;this._365call_ad_height=h;} this._get_absolute_position=function(){if(_this._float_type==0||_this._float_type==2) return false;else return true;} this._get_attachment=function(){if(_this._float_type==2||_this._float_type==3) return false;else return true;} this.change_align=function(){if(_this._365call_ad_fromSide==-1){_this._365call_ad_fromSide=(_this.bodyWidth()-_this._365call_ad_width)/2;if(_this._365call_ad_fromSide<0) _this._365call_ad_fromSide=0;} if(_this._365call_ad_fromTop==-1){_this._365call_ad_fromTop=(_this.bodyHeight()-_this._365call_ad_height)/2;if(_this._365call_ad_fromTop<0) _this._365call_ad_fromTop=0;}} this.DragStart=function(e){var evt=(_this.NS||_this.NS6)?e:window.event;if(_this.Resize&&_this._getDirection(evt,_this._365call_ad_Container)!=""){return true;} _this.drag_left=_this.leftPos();_this.drag_top=_this.topPos();_this.fix_position(_this.drag_left,_this.drag_top);var tmp1=function(e){_this.Drag(e);} var tmp2=function(e){_this.DragEnd(e);} if(_this.NS||_this.NS6){window.captureEvents(Event.MOUSEDOWN|Event.MOUSEMOVE|Event.MOUSEUP);document.releaseEvents(Event.MOUSEMOVE);} if(_this.NS){_this.offsetx=evt.layerX;_this.offsety=evt.layerY;window.onmousemove=tmp1;window.onmouseup=tmp2;} else if(_this.NS6||_this.IE){_this.offsetx=evt.clientX-_this.drag_left;_this.offsety=evt.clientY-_this.drag_top;document.onmousemove=tmp1;document.onmouseup=tmp2;} else{return true;} if(_this._365call_Resize_Div!=null){_this._365call_Resize_Div.style.width="100%";_this._365call_Resize_Div.style.height="100%";} if(_this._365call_Body_Mask!=null){_this._365call_Body_Mask.style.height=_this.bodyHeight()+"px";_this._365call_Body_Mask.style.width="100%";} _this._365call_ad_Container.style.cursor="move";_this.dragapproved=true;return false;} this.Drag=function(e){if(_this.dragapproved){var evt=(_this.NS||_this.NS6)?e:window.event;var x=0;var y=0;if(_this.NS){x=evt.pageX-_this.offsetx;y=evt.pageY-_this.offsety;} else if(_this.NS6){x=parseInt(evt.clientX)-_this.offsetx;y=parseInt(evt.clientY)-_this.offsety;} else if(_this.IE){x=evt.clientX-_this.offsetx;y=evt.clientY-_this.offsety;} _this.fix_position(x,y);return false;}} this.DragEnd=function(e){if(_this._365call_ad_Container==null) return;if(_this.IE||_this.NS6)document.onmousemove=null;if(_this.NS)window.onmousemove=null;var o=_this._365call_ad_Container;if(o.releaseCapture) o.releaseCapture();else if(window.captureEvents) window.captureEvents(Event.MOUSEMOVE|Event.MOUSEUP);o.style.cursor="default";_this.dragapproved=false;if(_this._365call_Resize_Div!=null){_this._365call_Resize_Div.style.width="0";_this._365call_Resize_Div.style.height="0";} if(_this._365call_Body_Mask!=null){_this._365call_Body_Mask.style.height="0";_this._365call_Body_Mask.style.width="0";} if(_this.Resize){_this._raseResize();}} this.fix_position=function(x,y){try{var w=_this.get_width(_this._365call_ad_Container);var h=_this.get_height(_this._365call_ad_Container);var b_w=0;var b_h=0;var st=0,sl=0;if(_this._float_type==5||_this._ie6){st=_this.scrollTop();sl=_this.scrollLeft();} b_w=sl+_this.bodyWidth()-w;b_h=st+_this.bodyHeight()-h;if(x>=b_w){x=b_w;} if(x<=1){x=1;} if(y>=b_h){y=b_h;} if(y<=1){y=1;} _this._fx=x;_this._fy=y;if(_this._ad_location==3||_this._ad_location==4) _this._365call_ad_fromTop=(b_h-y)<0?0:(b_h-y);else _this._365call_ad_fromTop=y-st;if(_this._ad_location==1||_this._ad_location==3) _this._365call_ad_fromSide=(b_w-x)<0?0:(b_w-x);else _this._365call_ad_fromSide=x-sl;if(!_this._ie6||_this._float_type==5){if(_this._float_type==5){_this._365call_ad_Container.style.left=x+"px";_this._365call_ad_Container.style.top=y+"px";} else{if(_this._ad_location==3||_this._ad_location==4) _this._365call_ad_Container.style.bottom=_this._365call_ad_fromTop+"px";else _this._365call_ad_Container.style.top=y+"px";if(_this._ad_location==1||_this._ad_location==3) _this._365call_ad_Container.style.right=_this._365call_ad_fromSide+"px";else _this._365call_ad_Container.style.left=x+"px";}}} catch(e){}} this.get_width=function(o){var w=0;if(_this._365call_ad_length>0){w=_this._365call_ad_length;return w;} try{if(o.offsetWidth) w=parseInt(o.scrollWidth,10);if(!w||isNaN(w)){if(o.currentStyle) w=parseInt(o.currentStyle.width,10);else w=parseInt(o.style.width,10);if(!w||isNaN(w)) w=_this._365call_ad_width;}} catch(e){} return w;} this.get_height=function(o){var h=0;if(_this._365call_ad_top>10){h=_this._365call_ad_top;return h;} try{if(o.offsetHeight) h=parseInt(o.scrollHeight,10);if(!h||isNaN(h)){if(o.currentStyle) h=parseInt(o.currentStyle.height,10);else h=parseInt(o.style.height,10);if(!h||isNaN(h)) h=_this._365call_ad_top;}} catch(e){} return h;} this.scrollTop=function(){var s;if(typeof(s)=='undefined'){try{if(typeof(window.pageYOffset)!='undefined'){s=window.pageYOffset;} else if(typeof(document.compatMode)!='undefined'&&document.documentElement.scrollTop>0){s=document.documentElement.scrollTop;} else if(typeof(document.body)!='undefined'){s=document.body.scrollTop;}} catch(e){s="0";}} return parseInt(s,10);} this.scrollLeft=function(){var s;if(typeof(window.pageXOffset)!='undefined'){s=window.pageXOffset;} else if(typeof(document.compatMode)!='undefined'&&document.documentElement.scrollLeft>0){s=document.documentElement.scrollLeft;} else if(typeof(document.body)!='undefined'){s=document.body.scrollLeft;} return parseInt(s,10);} this.bodyWidth=function(){var w=0;if(document.documentElement.clientWidth==0) w=document.body.clientWidth;else if(document.body.clientWidth<1024) w=document.documentElement.clientWidth;else if(document.body.clientWidthwindow.top.document.documentElement.scrollHeight?window.top.document.documentElement.scrollHeight:window.top.document.body.scrollHeight;} else{h=window.top.document.documentElement.scrollHeight==0?window.top.document.body.scrollHeight:window.top.document.documentElement.scrollHeight;}} catch(e){}} if(h==0){if(!document.all){h=document.body.scrollHeight>document.documentElement.scrollHeight?document.documentElement.scrollHeight:document.body.scrollHeight;} else{h=document.documentElement.scrollHeight==0?document.body.scrollHeight:document.documentElement.scrollHeight;}} return h;} this.leftPos=function(){var o=_this._365call_ad_Frame_Container;var sl=0;if(_this._float_type==5||_this._ie6) sl=_this.scrollLeft();if(_this._365call_ad_location==1||_this._365call_ad_location==3){var w=(o==null)?_this._365call_ad_length:_this.get_width(o);return 0-_this._365call_ad_fromSide+sl+_this.bodyWidth()-w;} else{return sl+_this._365call_ad_fromSide;}} this.topPos=function(){var o=_this._365call_ad_Frame_Container;var st=0;if(_this._float_type==5||_this._ie6) st=_this.scrollTop();if(_this._365call_ad_location==3||_this._365call_ad_location==4){var h=(o==null)?_this._365call_ad_top:_this.get_height(o);return 0-_this._365call_ad_fromTop+st+_this.bodyHeight()-h;} else{return st+_this._365call_ad_fromTop;}} this._writeAdContainer=function(strHtm){if(_this._365call_ad_Container!=null) return;_this._ad_location=_this._365call_ad_location;var w="";var h="";var d="";var p="";var ef="";if($365_IE||_this.show_type==3) _this.ShowEffect=0;if(_this.ShowEffect==1) ef="filter:alpha(opacity=0);-moz-opacity:0.0;opacity:0.0;";if(_this._365call_ad_width>0) w="width:"+_this._365call_ad_width.toString()+"px;";if(_this._365call_ad_height>0) h="height:"+_this._365call_ad_height.toString()+"px;";if(_this.show_type==0){h="";d="style=\"display:none;\"";_this.display=false;} else if(_this.show_type==5){d="style=\"display:none;\"";} else if(_this.show_type==1){h="height:1px;";d="";_this.display=true;} else if(_this.show_type==2){w="width:1px;";d="";_this.display=true;} else{w="width:1px;";h="height:1px;";d="";_this.display=true;} var _cssStr="";var _className="panel"+_this.RandID;if(_this._float_type==5){_cssStr="."+_className+"{position: absolute; "+w+h+p+ef+"z-index: "+_this.Zindex.toString()+"; OVERFLOW: hidden;border: 0; MARGIN-LEFT: 0; MARGIN-RIGHT: 0;}";} else{if(_this._ie6){if(_this.show_type==5){_cssStr="."+_className+"{ position: absolute; right:auto;\ left: "+_this._365call_ad_fromSide.toString()+"px; \ bottom:auto;\ top: "+_this._365call_ad_fromTop.toString()+"px; "+w+h+p+ef+"z-index: "+_this.Zindex.toString()+"; background-color:Transparent;OVERFLOW: hidden;border: 0; MARGIN-LEFT: 0; MARGIN-RIGHT: 0;}";} else{if(_this._get_attachment()) _cssStr="body{"+($365call_BackgroundImage()?"":"background-image:url(about:blank); ")+"background-attachment:fixed;}";_cssStr+="."+_className+"{ position: absolute; right:auto;\ left: expression( "+_this._this_name+".leftPos() + 'px' ); \ bottom:auto;\ top: expression( "+_this._this_name+".topPos() + 'px'); "+w+h+p+ef+"z-index: "+_this.Zindex.toString()+"; background-color:Transparent;OVERFLOW: hidden;border: 0; MARGIN-LEFT: 0; MARGIN-RIGHT: 0;}";}} else{_cssStr="."+_className;_cssStr+="{ position: fixed;"+ ((_this._365call_ad_location==0||_this._365call_ad_location==1)?"top:":"bottom:")+_this._365call_ad_fromTop.toString()+"px; "+ ((_this._365call_ad_location==0||_this._365call_ad_location==4)?"left:":"right:")+_this._365call_ad_fromSide.toString()+"px; " +w+h+p+ef+"z-index: "+_this.Zindex.toString()+"; OVERFLOW: hidden;border: 0; MARGIN-LEFT: 0; MARGIN-RIGHT: 0;}";}} $365call_createCSS(_cssStr);var contID="Container_"+_this.RandID;var frameID="frame_"+_this.RandID;var marginRight="0";if(_this.Resize) marginRight="8px";var _frameCssText="width: auto; height: auto;background-color:Transparent;OVERFLOW: hidden;border: 0; MARGIN-RIGHT: "+marginRight+"; MARGIN-LEFT: 0;";var dragStr="";var dragID="";if(_this.drag_status==2||_this.drag_status==3){var w="100%";if(_this.drag_width>0) w=_this.drag_width+"px";var dragCssText="width: "+w+"; height: "+_this._365call_ad_height_head.toString()+"px; background-color:Transparent; OVERFLOW: hidden;border: 0; position:absolute; left: 0; top: 0; z-index:2;";dragID="drag_"+_this.RandID;dragStr="
";} var closeStr="";if(_this.close_button==1){var closeCssText="position:absolute;cursor: pointer;z-index:3;right: "+_this._CloseButtonRight.toString()+"px;top: "+_this._CloseButtonTop+"px;width:"+_this._CloseButtonWidth+"px;height:"+_this._CloseButtonHeight+"px;background-image:url("+_this._closeButton_url+");background-repeat:no-repeat;";closeStr="
";} var bodyMaskID="webcall_bodyMask_"+_this.RandID;var bodyMaskStr="
";var s="
"+strHtm+"
"+dragStr+closeStr+"
"+bodyMaskStr;document.writeln(s);_this._365call_ad_Container=$365call_get(contID);_this._365call_ad_Frame_Container=$365_t(_this._365call_ad_Container,"div",frameID);_this._365call_Body_Mask=$365call_get(bodyMaskID);if(_this.drag_status==1){var tmp=function(e){_this.DragStart(e);} $365call_addEvent(_this._365call_ad_Frame_Container,'onmousedown',tmp,true);} if(dragStr.length>0){var dragLayer=$365_t(_this._365call_ad_Container,"div",dragID);if(dragID!=null){var tmp=function(e){_this.DragStart(e);} $365call_addEvent(dragLayer,'onmousedown',tmp,true);}}} this._createAdContainer=function(){if(_this._365call_ad_Container!=null) return;_this._ad_location=_this._365call_ad_location;var _cssStr="";var _className="webcall_message_show_"+new Date().getTime().toString()+parseInt(_this._365call_ad_width);var w="";var h="";var d="";var p="";var ef="";var b="";if($365_IE||_this.show_type==3) _this.ShowEffect=0;if(_this.ShowEffect==1) ef="filter:alpha(opacity=0);-moz-opacity:0.0;opacity:0.0;";if(_this._365call_ad_width>0) w="width:"+_this._365call_ad_width.toString()+"px;";if(_this._365call_ad_height>0) h="height:"+_this._365call_ad_height.toString()+"px;";if(_this.show_type==0){h="";d="display:none;";_this.display=false;} else if(_this.show_type==5){d="display:none;";} else if(_this.show_type==1){h="height:1px;";d="";_this.display=true;} else if(_this.show_type==2){w="width:1px;";d="";_this.display=true;} else{w="width:1px;";h="height:1px;";d="";_this.display=true;} _this._365call_ad_Container=document.createElement("div");if(_this._float_type==5){_cssStr+="position: absolute; "+w+h+d+p+ef+"z-index: "+_this.Zindex.toString()+"; OVERFLOW: hidden;border: 0; MARGIN-LEFT: 0; MARGIN-RIGHT: 0;";_this._365call_ad_Container.style.cssText=_cssStr;} else{if(_this._ie6){if(_this.show_type==5){_cssStr+="."+_className+"{ position: absolute; right:auto;\ left: "+_this._365call_ad_fromSide.toString()+"px; \ bottom:auto;\ top: "+_this._365call_ad_fromTop.toString()+"px; "+w+h+d+p+ef+"z-index: "+_this.Zindex.toString()+"; background-color:Transparent;OVERFLOW: hidden;border: 0; MARGIN-LEFT: 0; MARGIN-RIGHT: 0;}";} else{if(_this._get_attachment()) _cssStr="body{"+($365call_BackgroundImage()?"":"background-image:url(about:blank); ")+"background-attachment:fixed;}";_cssStr+="."+_className+"{ position: absolute; right:auto;\ left: expression( "+_this._this_name+".leftPos() + 'px' ); \ bottom:auto;\ top: expression( "+_this._this_name+".topPos() + 'px'); "+w+h+d+p+ef+"z-index: "+_this.Zindex.toString()+"; background-color:Transparent;OVERFLOW: hidden;border: 0; MARGIN-LEFT: 0; MARGIN-RIGHT: 0;}";}} else{_cssStr="."+_className;_cssStr+="{ position: fixed;"+ ((_this._365call_ad_location==0||_this._365call_ad_location==1)?"top:":"bottom:")+_this._365call_ad_fromTop.toString()+"px; "+ ((_this._365call_ad_location==0||_this._365call_ad_location==4)?"left:":"right:")+_this._365call_ad_fromSide.toString()+"px; " +w+h+d+p+ef+"z-index: "+_this.Zindex.toString()+"; OVERFLOW: hidden;border: 0; MARGIN-LEFT: 0; MARGIN-RIGHT: 0;}";} $365call_createCSS(_cssStr);_this._365call_ad_Container.className=_className;} if(_this._onAdClick1!=null){var tmp=function(e){_this._onAdClick1(e);} $365call_addEvent(_this._365call_ad_Container,'onclick',tmp,true);} _this._365call_ad_Frame_Container=document.createElement("div");var marginRight="0";if(_this.Resize) marginRight="8px";if(_this.close_button==1){_this._365call_ad_close_Container=document.createElement("div");_this._365call_ad_close_Container.style.cssText="margin-top: "+(_this._365call_ad_height-110)/2+"px;margin-left:1%; width:98% ; height: 110px; text-align:center; vertical-align:middle;position:absolute;z-index:12;display:none;\ OVERFLOW: hidden;border: 1px; border-radius:5px; background-color: #FFF;";_this._365call_ad_Container.appendChild(_this._365call_ad_close_Container);_this._365call_ad_close_Container2=document.createElement("div");_this._365call_ad_close_Container2.style.cssText=" width:100% ; height: 100%; text-align:center; vertical-align:middle;position:absolute;z-index:10;display:none;\ OVERFLOW: hidden;border: 1px; border-radius:5px; opacity:0.5;background:#333;";_this._365call_ad_Container.appendChild(_this._365call_ad_close_Container2);} if(_this._boder==1) _this._365call_ad_Container.style.cssText+="box-shadow: rgb(0 0 0 / 34%) 0px 0px 12px 0px;border-radius:4px;";_this._365call_ad_Frame_Container.style.cssText="width: auto; height: auto;"+"background-color:Transparent;OVERFLOW: hidden; MARGIN-RIGHT: "+marginRight+"; MARGIN-LEFT: 0;z-index:0";_this._365call_ad_Container.appendChild(_this._365call_ad_Frame_Container);_this._365call_ad_min_Container=document.createElement("div");_this._365call_ad_min_Container.style.cssText="width: 200px; height: 110px;position:absolute;z-index:4;display:none;\ OVERFLOW: hidden;border: 0; left: 0; top: 0;";$365call_addEvent(_this._365call_ad_min_Container,"onclick",_this._ExpandAd,true);_this._365call_ad_Container.appendChild(_this._365call_ad_min_Container);if(_this.Resize||_this.drag_status==3){_this._365call_Resize_Div=document.createElement("div");_this._365call_Resize_Div.style.cssText="width: 0; height: 0;\ background-color:Black;filter:alpha(opacity=10);-moz-opacity:0.1;opacity: 0.1;\ OVERFLOW: hidden;border: 0; position:absolute; left: 0; top: 0; z-index:2;";_this._365call_ad_Container.appendChild(_this._365call_Resize_Div);document.onmousedown=function(e){_this._doDown(e)};} if(_this.Resize){_this._raseResize();} if(_this.Resize){var moveLayer=document.createElement("div");moveLayer.style.cssText="width: 100%; height: 8px;\ background-color:Transparent;OVERFLOW: hidden;border: 0; position:absolute; left: 0; top: 0; z-index:1;";_this._365call_ad_Container.appendChild(moveLayer);moveLayer=document.createElement("div");moveLayer.style.cssText="width: 8px; height: 100%;\ background-color:Transparent;OVERFLOW: hidden;border: 0; position:absolute; right: 0; top: 0; z-index:1;";_this._365call_ad_Container.appendChild(moveLayer);moveLayer=document.createElement("div");moveLayer.style.cssText="width: 100%; height: 8px;\ background-color:Transparent;OVERFLOW: hidden;border: 0; position:absolute; left: 0; bottom: 0; z-index:1;";_this._365call_ad_Container.appendChild(moveLayer);moveLayer=document.createElement("div");moveLayer.style.cssText="width: 8px; height: 100%;\ background-color:Transparent;OVERFLOW: hidden;border: 0; position:absolute; left: 0; top: 0; z-index:1;";_this._365call_ad_Container.appendChild(moveLayer);} if(_this.drag_status==1){var tmp=function(e){_this.DragStart(e);} $365call_addEvent(_this._365call_ad_Frame_Container,'onmousedown',tmp,true);} else if(_this.drag_status==2||_this.drag_status==3){_this._365call_Move_Div=document.createElement("div");var w="100%";if(_this.drag_width>0) w=_this.drag_width+"px";_this._365call_Move_Div.style.cssText="width: "+w+"; height: "+_this._365call_ad_height_head.toString()+"px;\ background-color:Transparent; OVERFLOW: hidden;border: 0; position:absolute; left: 0; top: 0; z-index:2;";_this._365call_ad_Container.appendChild(_this._365call_Move_Div);var tmp=function(e){_this.DragStart(e);} $365call_addEvent(_this._365call_Move_Div,'onmousedown',tmp,true);} if(_this.close_button==1){var _closeButton=document.createElement("div");_closeButton.id="365webcall_switchCloseWin";_closeButton.style.cssText="position:absolute;\ cursor: pointer;\ z-index:3;\ right: "+_this._CloseButtonRight.toString()+"px;\ top: "+_this._CloseButtonTop+"px;\ width:"+_this._CloseButtonWidth+"px;\ height:"+_this._CloseButtonHeight+"px;\ background-image:url(\""+_this._closeButton_url+"\");\ background-repeat:no-repeat;";$365call_addEvent(_closeButton,"onclick",_this.hide,true);_this._365call_ad_Container.appendChild(_closeButton);} if(_this.switch_button==1){if(_this._switchButton_Expand_url.length>0) _365webcall_MM_preloadImages(_this._switchButton_Indent_url,_this._switchButton_Expand_url);_this._365call_ad_switchButton=document.createElement("div");var csst="" if(_this._switchButton_Indent_url.length>0){if($365_IE&&_this._switchButton_Indent_url.indexOf(".png")>0) csst="filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+_this._switchButton_Indent_url+"', sizingMethod='scale');";else csst="background-image:url(\""+_this._switchButton_Indent_url+"\");background-repeat:no-repeat; background-position: center center;";} _this._365call_ad_switchButton.style.cssText="position:absolute;\ cursor:pointer;\ z-index:3;\ right: "+_this._switchRight.toString()+"px;\ top:"+_this._switchTop.toString()+"px;\ width:"+_this._switchWidth.toString()+"px;\ height:"+_this._switchHeight.toString()+"px;"+csst;$365call_addEvent(_this._365call_ad_switchButton,"onclick",_this._switchAdShow,true);_this._365call_ad_Container.appendChild(_this._365call_ad_switchButton);} if(_this.Maximize_button==1){var _365call_MaximizeButton=document.createElement("div");var csst="" if(_this._MaximizeButton_Url.length>0){csst="background-image:url(\""+_this._MaximizeButton_Url+"\");background-repeat:no-repeat;";} _365call_MaximizeButton.style.cssText="position:absolute;\ cursor:pointer;\ z-index:3;\ font-size:0px;\ line-height:0px;\ right: "+_this._MaximizeRight.toString()+"px;\ top:"+_this._MaximizeTop.toString()+"px;\ width:"+_this._MaximizeWidth.toString()+"px;\ height:"+_this._MaximizeHeight.toString()+"px;"+csst;if(_this._MaximizeEvent==1) $365call_addEvent(_365call_MaximizeButton,"onclick",_this._switchFullWin,true);else $365call_addEvent(_365call_MaximizeButton,"onclick",_this._switchBigWin,true);_this._365call_ad_Container.appendChild(_365call_MaximizeButton);} if(_this.Minimum_button==1){var _365call_Minimum_button=document.createElement("div");var csst="" if(_this._MinimumButton_Url.length>0){csst="background-image:url(\""+_this._MinimumButton_Url+"\");background-repeat:no-repeat;";} _365call_Minimum_button.id="365webcall_switchMinimumWin";_365call_Minimum_button.style.cssText="position:absolute;\ cursor:pointer;\ z-index:3;\ font-size:0px;\ line-height:0px;\ right: "+_this._MinimumRight.toString()+"px;\ top:"+_this._MinimumTop.toString()+"px;\ width:"+_this._MinimumWidth.toString()+"px;\ height:"+_this._MinimumHeight.toString()+"px;"+csst;if(_this._MinimumEvent==1) $365call_addEvent(_365call_Minimum_button,"onclick",_this._HideWin,true);else if(_this._MinimumEvent==2) $365call_addEvent(_365call_Minimum_button,"onclick",_this.hide2,true);else $365call_addEvent(_365call_Minimum_button,"onclick",_this._IndentAd,true);_this._365call_ad_Container.appendChild(_365call_Minimum_button);} $365call_AppendToBody(_this._365call_ad_Container);_this._365call_Body_Mask=document.createElement("div");_this._365call_Body_Mask.style.cssText="width: 0; height: 0;\ background-color:Black;filter:alpha(opacity=3);-moz-opacity:0.03;opacity: 0.03;\ OVERFLOW: hidden;border: 0; position:absolute; left: 0; top: 0; z-index:"+(_this.Zindex-1)+";";$365call_AppendToBody(_this._365call_Body_Mask);return _this._365call_ad_Container;} this._getReal=function(el){temp=el;while((temp!=null)&&(temp.tagName!="BODY")){if(temp==_this._365call_ad_Container){el=temp;return el;} temp=temp.parentNode;} return null;} this._getDirection=function(evt,el){var xPos,yPos,offset,dir;dir="";if(_this._float_type==5||_this._ie6){xPos=evt.clientX-(el.offsetLeft-_this.scrollLeft());yPos=evt.clientY-(el.offsetTop-_this.scrollTop());} else{xPos=evt.clientX-el.offsetLeft;yPos=evt.clientY-el.offsetTop;} offset=8;if(yPosel.offsetHeight-offset) dir+="s";if(xPosel.offsetWidth-offset) dir+="e";return dir;} this._doDown=function(e){if(_this._365call_ad_show==0) return;var evt=(_this.NS||_this.NS6)?e:window.event;var el=null;if(_this.NS){el=_this._getReal(evt.target);} if(_this.IE){el=_this._getReal(evt.srcElement);} if(_this.NS6){el=_this._getReal(evt.target);} if(el==null){_this.theobject=null;return true;} var dir="";if(_this.Resize) dir=_this._getDirection(evt,_this._365call_ad_Container);if(dir==""){return true;} if(_this._365call_Resize_Div!=null){_this._365call_Resize_Div.style.width="100%";_this._365call_Resize_Div.style.height="100%";} if(_this._365call_Body_Mask!=null){_this._365call_Body_Mask.style.height=_this.bodyHeight()+"px";_this._365call_Body_Mask.style.width="100%";} _this.theobject=new $365call_resizeObject();_this.theobject.el=_this._365call_ad_Container;_this.theobject.dir=dir;if(_this.NS){_this.theobject.grabx=evt.pageX;_this.theobject.graby=evt.pageY;} if(_this.IE||_this.NS6){_this.theobject.grabx=evt.clientX;_this.theobject.graby=evt.clientY;} _this.theobject.width=_this._365call_ad_Container.offsetWidth;_this.theobject.height=_this._365call_ad_Container.offsetHeight;_this.theobject.left=_this._365call_ad_Container.offsetLeft;_this.theobject.top=_this._365call_ad_Container.offsetTop;evt.returnValue=false;evt.cancelBubble=true;} this._doMove=function(e){if(_this._365call_ad_show==0) return;var str;var evt=(_this.NS||_this.NS6)?e:window.event;if(_this.theobject==null){var el=null;if(_this.NS){el=_this._getReal(evt.target);} if(_this.IE){el=_this._getReal(evt.srcElement);} if(_this.NS6){el=_this._getReal(evt.target);} if(el==null){_this.theobject=null;return;} if(el){str=_this._getDirection(evt,_this._365call_ad_Container);if(str=="") str="default";else str+="-resize";el.style.cursor=str;}} if(_this.theobject!=null){var d=_this.theobject;var x=-1,y=-1;var cx=0,cy=0;if(_this.NS){cx=evt.pageX;cy=evt.pageY;} if(_this.IE||_this.NS6){cx=evt.clientX;cy=evt.clientY;} var w=0,h=0;if(d.dir.indexOf("e")!=-1) w=Math.max(_this._xMin,d.width+cx-d.grabx);if(_this.theobject.dir.indexOf("s")!=-1) h=Math.max(_this._yMin,d.height+cy-d.graby);if(d.dir.indexOf("w")!=-1){x=Math.min(d.left+cx-d.grabx,d.left+d.width-_this._xMin);w=Math.max(_this._xMin,d.width-cx+d.grabx);} if(d.dir.indexOf("n")!=-1){y=Math.min(d.top+cy-d.graby,d.top+d.height-_this._yMin);h=Math.max(_this._yMin,d.height-cy+d.graby);} if(w>0){if(w<_this._minWinWidth) w=_this._minWinWidth;_this._365call_ad_Container.style.width=w+"px";if(_this._365call_ad_Frame!=null) _this._365call_ad_Frame.style.width=(w-8)+"px";_this._365call_ad_width=_this._365call_ad_length=w;if(w<_this._365call_base_width) _this._365call_base_width=w;} if(h>0){if(h<_this._minWinHeight) h=_this._minWinHeight;_this._365call_ad_Container.style.height=h+"px";if(_this._365call_ad_Frame!=null) _this._365call_ad_Frame.style.height=h+"px";_this._365call_ad_height=_this._365call_ad_top=h;if(h<_this._365call_base_height) _this._365call_base_height=h;} if(x!=-1||y!=-1){if(x==-1) x=_this.leftPos();if(y==-1) y=_this.topPos();_this.fix_position(x,y);} evt.returnValue=false;evt.cancelBubble=true;}} this._doUp=function(e){if(_this._365call_ad_show==0) return;if(_this._365call_Resize_Div!=null){_this._365call_Resize_Div.style.width="0";_this._365call_Resize_Div.style.height="0";} if(_this._365call_Body_Mask!=null){_this._365call_Body_Mask.style.height="0";_this._365call_Body_Mask.style.width="0";} if(_this.theobject!=null){_this.theobject=null;}} this._raseResize=function(){document.onmouseup=function(e){_this._doUp(e);};document.onmousemove=function(e){_this._doMove(e);};} this._ShowWin=function(){_this._365call_ad_Container.style.height=_this._365call_ad_height+"px";_this._365call_ad_Container.style.width=_this._365call_ad_width+"px";_this._365call_ad_Frame_Container.style.height="auto";_this._365call_ad_Frame_Container.style.width="auto";_this._365call_ad_min_Container.style.display="none";_this.fix_position(_this.leftPos(),_this.topPos());_this._365call_ad_show=1;if(_this._onExpand!=null) _this._onExpand(_this);} this._ExpandAd=function(){if(this.show_type==1||this.show_type==3){_this._365call_ad_top+=_this._365call_ad_show_rate;if(_this._365call_ad_top>_this._365call_ad_height){_this._365call_ad_top=_this._365call_ad_height;}} if(this.show_type==2||this.show_type==3){_this._365call_ad_length+=_this._365call_ad_show_rate;if(_this._365call_ad_length>_this._365call_ad_width){_this._365call_ad_length=_this._365call_ad_width;}} if($365_IE){if(this.show_type==1||this.show_type==3){_this._365call_ad_Container.style.height=_this._365call_ad_top+"px";if(_this._365call_ad_Frame!=null) _this._365call_ad_Frame.style.height=_this._365call_ad_top+"px";} if(this.show_type==2||this.show_type==3){var w=0;if(_this.Resize) w=8;if(_this._365call_ad_Frame!=null) _this._365call_ad_Frame.style.width=(_this._365call_ad_length-w)+"px";_this._365call_ad_Container.style.width=_this._365call_ad_length+"px";}} else{var clientSize=$365_getClientSize(_this._365call_ad_Container);var dy=clientSize.t+clientSize.b;var dx=clientSize.l+clientSize.r;if(this.show_type==1||this.show_type==3){if(_this._365call_ad_Frame!=null) _this._365call_ad_Frame.style.height=_this._365call_ad_top-dy+"px";_this._365call_ad_Container.style.height=_this._365call_ad_top-dy+"px";} if(this.show_type==2||this.show_type==3){var w=0;if(_this.Resize) w=8;if(_this._365call_ad_Frame!=null) _this._365call_ad_Frame.style.width=(_this._365call_ad_length-w-dx)+"px";_this._365call_ad_Container.style.width=_this._365call_ad_length-dx+"px";}} if(((this.show_type==1||this.show_type==3)&&_this._365call_ad_top<_this._365call_ad_height)||((this.show_type==2||this.show_type==3)&&_this._365call_ad_length<_this._365call_ad_width)){if(_this._365call_ad_act!=null) clearTimeout(_this._365call_ad_act);_this._365call_ad_act=window.setTimeout(function(){_this._ExpandAd();},10);} else{_this.fix_position(_this.leftPos(),_this.topPos());if(_this._365call_ad_switchButton&&_this._switchButton_Indent_url.length>0){if($365_IE&&_this._switchButton_Indent_url.indexOf(".png")>0) _this._365call_ad_switchButton.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+_this._switchButton_Indent_url+"', sizingMethod='scale')";else _this._365call_ad_switchButton.style.backgroundImage="url(\""+_this._switchButton_Indent_url+"\")";} _this._365call_ad_show=1;}} this.showFrameCon=function(src){var conA=document.createElement("div");conA.style.cssText="width:1072px; height:768px; cursor: default; position:absolute; top:-2000px; left:-2000px;";conA.innerHTML="";$365call_AppendToBody(conA);} this.showCon1=function(src){var conA=document.createElement("div");conA.style.cssText="width:"+_this.bodyWidth()+"px; height:"+_this.bodyScrollHeight()+"px;\ position: absolute; left:"+_this.scrollLeft()+"px; top: 0; \ cursor: default; background-color:White; filter:alpha(opacity=0);-moz-opacity:1.0; opacity: 0; z-index: "+(_this.Zindex+100).toString()+";";var tmp=function(){conA.style.width=0;conA.style.height=0;conA.style.display="none";window.setTimeout(function(){window.focus();},50);if(_this._onAdClick!=null) _this._onAdClick(_this);} $365call_addEvent(conA,"onclick",tmp,true);var conAA=document.createElement("a");conAA.href=src;conAA.target="_blank";conAA.style.cursor="default";var conDD=document.createElement("div");conDD.style.cssText="width:"+_this.bodyWidth()+"px; height:"+_this.bodyHeight()+"px;";conAA.appendChild(conDD);conA.appendChild(conAA);$365call_AppendToBody(conA);} this.copyTag=function(txt){var obj=document.createElement("div");obj.style.cssText="width:1px; height:1px;position: absolute; left:-10px; top: 0;opacity: 0;";obj.innerHTML=txt;$365call_AppendToBody(obj);var range=document.createRange();var node=obj;range.selectNode(node);var selection=window.getSelection();if(selection.rangeCount>0) selection.removeAllRanges();selection.addRange(range);document.execCommand('copy');} this.copyAd=function(txt){var conA=document.createElement("div");conA.style.cssText="width:"+_this.bodyWidth()+"px; height:"+_this.bodyScrollHeight()+"px;\ position: absolute; left:"+_this.scrollLeft()+"px; top: 0; \ cursor: default; background-color:White; filter:alpha(opacity=0);-moz-opacity:1.0; opacity: 0; z-index: "+(_this.Zindex+100).toString()+";";var tmp=function(){_this.copyTag(txt);conA.style.width=0;conA.style.height=0;conA.style.display="none";if(_this._onAdClick!=null){_this._onAdClick(_this);_this._onAdClick=null;}} $365call_addEvent(conA,"onclick",tmp,true);$365call_AppendToBody(conA);} this.showCon=function(src){var conA=document.createElement("div");conA.style.cssText="width:"+_this.bodyWidth()+"px; height:"+_this.bodyScrollHeight()+"px;\ position: absolute; left:"+_this.scrollLeft()+"px; top: 0; \ cursor: default; background-color:White; filter:alpha(opacity=0);-moz-opacity:1.0; opacity: 0; z-index: "+(_this.Zindex+100).toString()+";";var tmp=function(){window.open(src);conA.style.width=0;conA.style.height=0;conA.style.display="none";window.setTimeout(function(){top.window.focus();},50);if(_this._onAdClick!=null) _this._onAdClick(_this);} $365call_addEvent(conA,"onclick",tmp,true);$365call_AppendToBody(conA);} this._filter=function(){if(_this.EffectValue>=100){if($365_IE) _this._365call_ad_Container.style.filter="";return;} _this.EffectValue+=5;if($365_IE){_this._365call_ad_Container.style.filter="alpha(opacity="+_this.EffectValue.toString()+")";} else{if(typeof(_this._365call_ad_Container.style.opacity)!="undefined") _this._365call_ad_Container.style.opacity=_this.EffectValue/100.0;if(typeof(_this._365call_ad_Container.style.MozOpacity)!="undefined") _this._365call_ad_Container.style.MozOpacity=_this.EffectValue/100.0;} window.setTimeout(function(){_this._filter();},50);} this.show=function(){if(_this._365call_ad_Container.innerHTML.indexOf("iframe")<0) _this._365call_ad_Container.firstChild.style.border="0px";_this._365call_ad_Container.style.display="block";if(_this._365call_ad_Frame!=null) _this._365call_ad_Frame.style.display="block";_this.display=true;_this._365call_ad_show=1;if(_this._365call_ad_height==0){_this._365call_ad_height=_this.get_height(_this._365call_ad_Frame_Container);if(_this.show_type==0) _this._365call_ad_top=_this._365call_ad_height;} if(_this._365call_ad_width==0) _this._365call_ad_width=_this.get_width(_this._365call_ad_Frame_Container);if(_this._365call_ad_Frame!=null&&_this._365call_ad_height>1&&_this._365call_ad_width>1){_this._365call_ad_Frame.style.height=_this._365call_ad_height+"px";var w=0;if(_this.Resize) w=8;_this._365call_ad_Frame.style.width=(_this._365call_ad_width-w)+"px";} if(_this.ShowEffect==1) _this._filter();if(_this._onShow!=null) _this._onShow(_this);} this.showMsgPrompt=function(content,isPreview){if(content.length==0) return;if(_this._365call_ad_show!=0) return;var minFrame=$365_t(_this._365call_ad_min_Container,"IFRAME");if(minFrame!=null){var msgArray=content.split("<;>");if(msgArray.length>2){var newmsg='
'+msgArray[1]+'
'+ (msgArray[2].length<11?msgArray[2]:(msgArray[2].substring(0,9)+'...'))+'
';minFrame.contentWindow.showmsg(parseInt(msgArray[0]),newmsg,isPreview);}}} this.showMMPrompt=function(content,isPreview,isPc){if(content.length==0) return;var msgArray=_365webcall_DecodeString(content).split("<;>");if(msgArray.length>2){if(isPreview==1){if(typeof(isPc)!="undefined") _this.ChangeFrameSize(_this._365call_ad_width+240,0);else _this.ChangeFrameSize(_this.bodyWidth(),0);_this.noChange=true;} var newmsg='

'+msgArray[1]+'

'+ (msgArray[2].length<51?msgArray[2]:(msgArray[2].substring(0,49)+'...'))+'

';_this._365call_ad_Frame.contentWindow.showmsg(parseInt(msgArray[0]),newmsg,isPreview);if(_this.autoOpenChatWinTime>0) setTimeout(function(){_this._365call_ad_Frame.contentWindow.chat(0,0);},_this.autoOpenChatWinTime*1000);}} this.cancelClosePrompt=function(){if(_this._365call_ad_close_Container!=null) _this._365call_ad_close_Container.style.display="none";if(_this._365call_ad_close_Container2!=null) _this._365call_ad_close_Container2.style.display="none";} this.removeClosePrompt=function(){if(_this._365call_ad_close_Container!=null){_this._365call_ad_close_Container.parentNode.removeChild(_this._365call_ad_close_Container);_this._365call_ad_close_Container=null;} if(_this._365call_ad_close_Container2!=null){_this._365call_ad_close_Container2.parentNode.removeChild(_this._365call_ad_close_Container2);_this._365call_ad_close_Container2=null;}} this.hide2=function(){if(_this.show_type==3){_this._switchAdShow();} else{_this._365call_ad_Container.style.display="none";if(_this._365call_ad_Frame!=null) _this._365call_ad_Frame.style.display="none";} _this.display=false;_this._365call_ad_show=0;if(_this._onHide!=null) _this._onHide(_this);} this.hide=function(){if(_this._365call_ad_close_Container!=null&&_this._365call_ad_close_Container2!=null){_this._365call_ad_close_Container.style.display="block";_this._365call_ad_close_Container2.style.display="block";return;} _this._365call_ad_Container.style.display="none";if(_this._365call_ad_Frame!=null) _this._365call_ad_Frame.style.display="none";_this.display=false;_this._365call_ad_show=0;if(_this._onHide!=null) _this._onHide(_this);if(_this._365call_ad_Container!=null){_this._365call_ad_Container.parentNode.removeChild(_this._365call_ad_Container);_this._365call_ad_Container=null;}} this._HideWin=function(){_this._365call_ad_Container.style.height="110px";_this._365call_ad_Container.style.width="200px";_this._365call_ad_Frame_Container.style.height="1px";_this._365call_ad_Frame_Container.style.width="1px";_this._365call_ad_min_Container.style.display="block";_this._365call_ad_show=0;if(_this._onIndent!=null) _this._onIndent(_this);} this._IndentAd=function(){if(this.show_type==1||this.show_type==3){_this._365call_ad_top-=_this._365call_ad_show_rate;if(_this._365call_ad_top<_this._365call_ad_height_head){_this._365call_ad_top=_this._365call_ad_height_head;}} if(this.show_type==2||this.show_type==3){_this._365call_ad_length-=_this._365call_ad_show_rate;if(_this._365call_ad_length<_this._365call_ad_width_head){_this._365call_ad_length=_this._365call_ad_width_head;}} if($365_IE){if(this.show_type==1||this.show_type==3){if(_this._365call_ad_Frame!=null) _this._365call_ad_Frame.style.height=_this._365call_ad_top+"px";_this._365call_ad_Container.style.height=_this._365call_ad_top+"px";} if(this.show_type==2||this.show_type==3){var w=0;if(_this.Resize) w=8;if(_this._365call_ad_Frame!=null) _this._365call_ad_Frame.style.width=(_this._365call_ad_length-w)+"px";_this._365call_ad_Container.style.width=_this._365call_ad_length+"px";}} else{var clientSize=$365_getClientSize(_this._365call_ad_Container);var dy=clientSize.t+clientSize.b;var dx=clientSize.l+clientSize.r;if(this.show_type==1||this.show_type==3){if(_this._365call_ad_Frame!=null) _this._365call_ad_Frame.style.height=_this._365call_ad_top-dy+"px";_this._365call_ad_Container.style.height=_this._365call_ad_top-dy+"px";} if(this.show_type==2||this.show_type==3){var w=0;if(_this.Resize) w=8;if(_this._365call_ad_Frame!=null) _this._365call_ad_Frame.style.width=(_this._365call_ad_length-w-dx)+"px";_this._365call_ad_Container.style.width=_this._365call_ad_length-dx+"px";}} if(((this.show_type==1||this.show_type==3)&&_this._365call_ad_top>_this._365call_ad_height_head)||((this.show_type==2||this.show_type==3)&&_this._365call_ad_length>_this._365call_ad_width_head)){if(_this._365call_ad_act!=null) clearTimeout(_this._365call_ad_act);_this._365call_ad_act=window.setTimeout(function(){_this._IndentAd();},20);} else{_this.fix_position(_this.leftPos(),_this.topPos());if(_this._365call_ad_switchButton&&_this._switchButton_Expand_url.length>0){if($365_IE&&_this._switchButton_Expand_url.indexOf(".png")>0) _this._365call_ad_switchButton.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+_this._switchButton_Expand_url+"', sizingMethod='scale')";else _this._365call_ad_switchButton.style.backgroundImage="url(\""+_this._switchButton_Expand_url+"\")";}}} this._switchBigWin=function(){_this._365call_ad_Container.parentNode.removeChild(_this._365call_ad_Container);_this._365call_ad_Container=null;_this.display=false;_this._365call_ad_show=0;if(_this._365call_openWin) _this._365call_openWin(_this);} this._closeAd=function(evnt){_this._365call_ad_height_head=0;_this._365call_ad_width_head=0;_this.hide();_this._365call_ad_show=0;} this._switchAdShow=function(evnt){if(_this.show_type==1&&_this._365call_ad_top>_this._365call_ad_height_head&&_this._365call_ad_top<_this._365call_ad_height) return;if(_this.show_type==2&&_this._365call_ad_length>_this._365call_ad_width_head&&_this._365call_ad_length<_this._365call_ad_width) return;if(_this.show_type==3&&((_this._365call_ad_top>_this._365call_ad_height_head&&_this._365call_ad_top<_this._365call_ad_height)||(_this._365call_ad_length>_this._365call_ad_width_head&&_this._365call_ad_length<_this._365call_ad_width))) return;if(_this._365call_ad_top<=_this._365call_ad_height_head||_this._365call_ad_length<=_this._365call_ad_width_head){if(_this._onOpen!=null) _this._onOpen(_this);_this._ExpandAd();} else{if(_this._onClose!=null) _this._onClose(_this);_this._365call_ad_show=0;_this._IndentAd();}} this._switchFullWin=function(h){_this.ChangeFrameSize(0,h);} this.ChangeFrameSize=function(w,h){if(_this.noChange) return;if(w>0&&parseInt(_this._365call_ad_Frame.style.width)!=w){_this._365call_ad_Container.style.width=w+"px";_this._365call_ad_Frame.style.width=w+"px";_this._365call_ad_width=w;_this._365call_ad_length=w;} if(typeof(h)!="undefined"&&h>0&&parseInt(_this._365call_ad_Frame.style.height)!=h){_this._365call_ad_Container.style.height=h+"px";_this._365call_ad_Frame.style.height=h+"px";_this._365call_ad_height=h;_this._365call_ad_top=h;}} this.FixedFrameSize=function(){try{if(_this.display){var bHeight=_this._365call_ad_Frame.contentWindow.document.body.scrollHeight;var dHeight=_this._365call_ad_Frame.contentWindow.document.documentElement.scrollHeight;var h=Math.max(bHeight,dHeight);if(h<=_this._365call_ad_Frame.height) h=Math.min(bHeight,dHeight);if(h>0&&parseInt(_this._365call_ad_Frame.style.height)!=h){_this._365call_ad_Container.style.height=h+"px";_this._365call_ad_Frame.style.height=h+"px";_this._365call_ad_height=h;_this._365call_ad_top=h;} var bWidth=_this._365call_ad_Frame.contentWindow.document.body.scrollWidth;var dWidth=_this._365call_ad_Frame.contentWindow.document.documentElement.scrollWidth;var w=Math.max(bWidth,dWidth);if(w>0&&parseInt(_this._365call_ad_Frame.style.Width)!=w){_this._365call_ad_Container.style.width=w+"px";_this._365call_ad_Frame.style.width=w+"px";_this._365call_ad_width=w;_this._365call_ad_length=w;}} var t=1000;if(_this._showListTimes<10) _this._showListTimes++;else t=100 window.setTimeout(function(){_this.FixedFrameSize();},t);}catch(ex){}} this.stayTopLeft=function(){if(!_this.dragapproved){_this._fx=_this.leftPos();var dy=(_this.topPos()-_this._fy)/8;if(Math.abs(dy)>0.01){_this._fy+=dy;var rs=false;if($365_IE&&_this._365call_ad_Container.style.display!="none"){rs=true;_this._365call_ad_Container.style.display="none";} _this._365call_ad_Container.style.left=_this._fx+"px";_this._365call_ad_Container.style.top=_this._fy+"px";if(rs) _this._365call_ad_Container.style.display="block";}} window.setTimeout(function(){_this.stayTopLeft();},30);} this.stayposition=function(){if(!_this.dragapproved){_this._fx=_this.leftPos();var rs=false;if($365_IE&&_this._365call_ad_Container.style.display!="none"){rs=true;_this._365call_ad_Container.style.display="none";} _this._365call_ad_Container.style.top=_this._fy+"px";_this._365call_ad_Container.style.position="fixed";if(_this._365call_ad_frombottom==2){_this._365call_ad_Container.style.cssText=_this._365call_ad_Container.style.cssText.replace('top','bottom');_this._365call_ad_Container.style.bottom="0";} if(rs) _this._365call_ad_Container.style.display="block";}} this._openFrame=function(color){_this._ie6=_365call_isIE6()||($365_IE&&this._get_absolute_position());if(_this._365call_ad_Container!=null){_this._365call_ad_Container.style.display="none";} _this._createAdContainer();if(_this._layer_con.length==0) _this._layer_con="IFRAME_365webcall_"+new Date().getTime().toString();_this._365call_ad_Frame_Container.innerHTML="";_this._365call_ad_Frame=$365_t(_this._365call_ad_Frame_Container,"IFRAME",_this._layer_con);if(_this._float_type==5){_this._fx=_this.leftPos();_this._fy=_this.topPos()+60;_this.stayTopLeft();} _this._365call_ad_top=_this._365call_ad_height;_this._365call_ad_length=_this._365call_ad_width;if(this.show_type==1||this.show_type==3){_this._365call_ad_top=0;} if(this.show_type==2||this.show_type==3){_this._365call_ad_length=0;} if(_this._365call_ad_close_Container!=null&&typeof(color)!="undefined"){_this._365call_ad_close_Container.innerHTML="";_this._365call_ad_close_Frame=$365_t(_this._365call_ad_close_Container,"IFRAME");var cont2='
'+_365webcall_GetShowText('closePrompt')+'
'+'';$float_IframInsert2(_this._365call_ad_close_Frame,color,cont2,_this._this_name);} if(this.show_type!=0&&this.show_type!=5){if(_this._365call_ad_Frame==null) return;window.setTimeout(function(){_this._switchAdShow();},_this._time_span);}} this._openFrame3=function(txt,color,host){_this._ie6=_365call_isIE6()||($365_IE&&this._get_absolute_position());if(_this._365call_ad_Container!=null){_this._365call_ad_Container.style.display="none";} _this._createAdContainer();if(_this._layer_con.length==0) _this._layer_con="IFRAME_365webcall_"+new Date().getTime().toString();_this._365call_ad_Frame_Container.innerHTML="";_this._365call_ad_Frame=$365_t(_this._365call_ad_Frame_Container,"IFRAME",_this._layer_con);if(typeof(txt)!="undefined"&&typeof(color)!="undefined"){_this._365call_ad_min_Container.innerHTML="";var minFrame=$365_t(_this._365call_ad_min_Container,"IFRAME");var cont='
0
'+'
'+ txt+'
';$float_IframInsert(minFrame,color,cont,_this._this_name);if(_this._365call_ad_close_Container!=null){_this._365call_ad_close_Container.innerHTML="";_this._365call_ad_close_Frame=$365_t(_this._365call_ad_close_Container,"IFRAME");} var cont2='
'+_365webcall_GetShowText('closePrompt')+'
'+'';$float_IframInsert2(_this._365call_ad_close_Frame,color,cont2,_this._this_name);} if(_this._float_type==5){_this._fx=_this.leftPos();_this._fy=_this.topPos()+60;_this.stayTopLeft();}} this._openFrame2=function(){_this._ie6=_365call_isIE6()||($365_IE&&this._get_absolute_position());if(_this._365call_ad_Container!=null){_this._365call_ad_Container.style.display="none";} var IDs=new Array();_this.RandID=_this._this_name;IDs=_this._this_name.split(".");if(IDs.length>1) _this.RandID=IDs[1]+new Date().getTime().toString();_this.change_align();if(_this._layer_con.length==0) _this._layer_con="IFRAME_"+_this.RandID;var w=_this._365call_ad_width;var h=_this._365call_ad_height;if(w==0) w=1;if(h==0) h=1;var frameStr="";if(_this.writeHtml==1){_this._writeAdContainer(frameStr);} else{_this._createAdContainer();_this._365call_ad_Frame_Container.innerHTML=frameStr;} _this._365call_ad_Frame=$365_t(_this._365call_ad_Frame_Container,"IFRAME",_this._layer_con);var fcon="";fcon="\ "+_this._floatHtml;$365call_IframInsert(_this._365call_ad_Frame,fcon,_this._this_name,_this.width_limit);if(_this._float_type==5){_this._fx=_this.leftPos();_this._fy=_this.topPos()+60;_this.stayTopLeft();} _this._365call_ad_top=_this._365call_ad_height;_this._365call_ad_length=_this._365call_ad_width;if(_this._365call_ad_height==0||_this._365call_ad_width==0) _this.FixedFrameSize();} this._open=function(){_this._ie6=_365call_isIE6()||($365_IE&&this._get_absolute_position());if(_this._365call_ad_Container!=null){_this._365call_ad_Container.style.display="none";} var IDs=new Array();_this.RandID=_this._this_name;IDs=_this._this_name.split(".");if(IDs.length>1) _this.RandID=IDs[1]+new Date().getTime().toString();_this.change_align();if(_this.writeHtml==1){_this._writeAdContainer(_this._floatHtml);} else{_this._createAdContainer();_this._365call_ad_Frame_Container.innerHTML=_this._floatHtml;} if(_this.show_type==0){_this._365call_ad_top=_this._365call_ad_height;_this._365call_ad_length=_this._365call_ad_width;} if(_this._float_type==5){_this._fx=_this.leftPos();_this._fy=_this.topPos()+60;_this.stayTopLeft();} if(_this.show_type!=0){window.setTimeout(function(){_this._switchAdShow();},_this._time_span);} else{_this._365call_ad_top=_this._365call_ad_height;}} this._sendCommand=function(c){var data={_365_cmd:c};_this._365call_ad_Frame.contentWindow.postMessage(data,'*');}} if(typeof(OnlineSupport_Float_loaded)=='undefined'||!OnlineSupport_Float_loaded) var OnlineSupport_Float_loaded=true;function OnlineSupport_365webcall(name){var _this=this;this._name=name;this._365call_new_win="";this._365call_invite_content="";this._365call_MSNPassport="";this._365call_host="";this._365call_settings="";this._365call_title="";this._365call_IpAddress="";this._365call_l_language="";this._365call_l_icon_width=100;this._365call_l_icon_padding=0;this._365call_l_icon_top=0;this._365call_l_icon_align="left";this._365call_l_icon_valign="top";this._365call_l_icon_hide=0;this._365call_box_width=0;this._365call_box_height=0;this._365groups_CallCount=0;this._365groups_UID="";this._365groups_dID="0";this._365call_charset="0";this._365call_timeLapse=5;this._365call_AccountID;this._365call_UserID;this._365call_ClientID="";this._365call_l_inviteWay=0;this._365call_l_ifInvite=1;this._365call_l_invite_width=402;this._365call_l_invite_height=142;this._365call_l_invite_padding=0;this._365call_l_invite_top=0;this._365call_l_invite_align="left";this._365call_l_invite_valign="top";this._365call_Inner_Invite="";this._365call_Inner_Cont="";this._365call_cssStr="";this.noMonitoring=0;this._365call_UserStatus="online";this._365call_Robot=false;this._365call_Invite_UserID=0;this._365call_Invite_Send=0;this._365call_have_closed=0;this._365call_if_urlclosed="_365call_if_urlclosed_"+this._name;this._365call_minIcon_Float=null;this._365call_inviteFloat=null;this._365call_Invite_container="_365call_Invite_container_"+this._name;this._365call_inviteIcon="_365call_inviteIcon_"+this._name;this._365call_spanCont="_365call_spanCont_"+this._name;this._365call_imFloat=null;this._365call_Icon_container="_355call_Icon_container_"+this._name;this._365call_serviceIcon="_365call_serviceIcon_"+this._name;this._365call_iframe_update=null;this._365call_iframe_update_no=0;this._xaduid="";this._365call_AdMessage=null;this._365call_webchat_win=null;this._365webcall_miniLeaveWord=null;this._365call_ChatSession="";this._365call_GetChatStatus_Time=10000;this._365call_ChatWinStatus_act=null;this._365call_ChatWin_Available=false;this._365call_ChatWin_nIndex=0;this._365call_Show_Type=0;this.alexa=0;this.ActiveCall=0;this.ActiveWidth=350;this.ActiveHeight=400;this.ActiveLocation=1;this.skin_class="";this.close_button=0;this.float_type=5;this.float_type1=5;this.float_type2=5;this.float_type3=5;this.minIcon="";this.showMinIcon=0;this.minIconWidth=21;this.StatWebInserted=0;this.blw_mode="";this.win_url="";this.leaveMsgTrans="";this.intoFrame=0;this.miniLeaveWordRequire=0;this.miniLeaveWordLocation=0;this.VideoStatus=0;this.Heartbeat=true;this.getCommandDelay=20000;this._365call_adContent="";this._365call_webAdIPId=0;this._365call_AdID=0;this._365call_urlInfo=0;this._prevent=0;this._prevent_url="";this.Active_lrSide=0;this.Active_tbSide=0;this.noFloat=0;this.InviteParaCustom=0;this.againTimeLapse=0;this.writeHtml=0;this.XYTX_LOGIN_NAME="";this.Pop_mbed=1;this._365call_iframe_update_art=null;this.isMobile=false;this.aBlank=false;this.graded=0;this.isH5=false;this.noShow=0;this.autoOpenChatWinTime=0;this._PageClosed=function(evnt){if(_this._365call_have_closed) return;_this._365call_have_closed=1;var url=_this._365call_host+"chat/pageClosed.aspx?uID="+_this._365groups_UID+"&dID="+_this._365groups_dID+"&webID="+_this._365call_AccountID+"&userID="+_this._365call_UserID;var pageClose=$365call_get(_this._365call_if_urlclosed);if(pageClose) pageClose.src=url;} this._openChatWin=function(p_user,invite,obj){if(_this.Pop_mbed!=0){if((_365call_Browser()=="sougou"||this.aBlank||this.isMobile)&&typeof(obj)=='undefined') return true;if((_365call_Browser()!="sougou"&&!this.aBlank&&!this.isMobile)&&typeof(obj)!='undefined') return true;} else{if(typeof(obj)!='undefined') return true;} var chatDir;if(_this._365call_UserStatus=="offline"&&_this.leaveMsgTrans.length>0){window.open(_this.leaveMsgTrans);return;} if(_this.win_url.length>0){chatDir=_this.win_url;if(_this.win_url.toLowerCase().indexOf("onlinechat2")!=-1){chatDir+="?h="+escape(_365webcall_GetUrlSub(_this._365call_host));} else{chatDir+="?h="+escape(_this._365call_host);} if((_this._365call_UserStatus=="offline"&&_this._365call_Robot)||p_user==-1){chatDir+="&r=1";}} else{if((_this._365call_UserStatus=="offline"&&_this._365call_Robot)||p_user==-1){chatDir=_this._365call_host+"chat/ChatWin3.aspx?UserID=-1";} else{chatDir=_this._365call_host+"chat/ChatWin3.aspx?h=";}} var url=chatDir+"&settings="+_this._365call_settings;if(p_user>0) url+="&UserID="+p_user.toString();if(_this._365call_l_language.length>0) url+="&LL="+_this._365call_l_language;if(typeof(invite)!='undefined'&&invite==1){if(p_user>0) url+="&accessWay=2";else url+="&accessWay=1";} url+="&chs="+_this._365call_charset;if(_this.blw_mode.length>0) url+="&op="+_this.blw_mode;if(_this.skin_class.length>0) url+="&sk="+escape(_this.skin_class);if(_this._365call_MSNPassport.length>0) url+="&msn="+escape(_this._365call_MSNPassport);if(_this._xaduid.length>0) url+="&xuid="+escape(_this._xaduid);if(typeof(_365call_memberID)!='undefined'&&_365call_memberID.length>0&&_365call_memberID!="0") url+="&memberid="+escape(_365call_memberID);else if(typeof(_webcall_memberID)!='undefined'&&_webcall_memberID.length>0&&_webcall_memberID!="0") url+="&memberid="+escape(_webcall_memberID);if(typeof(_365call_clientName)!='undefined'&&_365call_clientName.length>0) url+="&name="+escape(_365call_clientName);else if(typeof(_webcall_clientName)!='undefined'&&_webcall_clientName.length>0) url+="&name="+escape(_webcall_clientName);if(typeof(_365call_note)!='undefined'&&_365call_note.length>0) url+="¬e="+escape(_365call_note);else if(typeof(_webcall_note)!='undefined'&&_webcall_note.length>0) url+="¬e="+escape(_webcall_note);url+="&ClientID="+_this._365call_ClientID+_365groups_GetBaseData();if(_this.Pop_mbed==1){url+="&v=5";if((_365call_Browser()=="sougou"||this.aBlank||this.isMobile)&&typeof(obj)!='undefined'){obj.href=url;return true;} else{var _webcall_left=(screen.width-_this._365call_box_width)/2;var _webcall_top=(screen.height-_this._365call_box_height)/2;window.open(url,_this._365call_settings+"0","width="+_this._365call_box_width+",height="+_this._365call_box_height+", top="+_webcall_top+",left="+_webcall_left+",toolbar=no, menubar=no, scrollbars=no, resizable=yes,location=no, status=no,center=yes");return false;}} else{_this.onOpenWebChatWin1(url);return false;}} this._openGroupChatWin=function(listGroup,group_status,obj){if(_this.Pop_mbed!=0){if((_365call_Browser()=="sougou"||this.aBlank||this.isMobile)&&typeof(obj)=='undefined') return true;if((_365call_Browser()!="sougou"&&!this.aBlank&&!this.isMobile)&&typeof(obj)!='undefined') return true;} else{if(typeof(obj)!='undefined') return true;} var url="";if(group_status==9){var chatDir;if(_this.win_url.length>0){chatDir=_this.win_url;if(_this.win_url.toLowerCase().indexOf("onlinechat2")!=-1) chatDir+="?r=1&h="+escape(_365webcall_GetUrlSub(_this._365call_host));else chatDir+="?r=1&h="+escape(_this._365call_host);} else{chatDir=_this._365call_host+"chat/ChatWin3.aspx?UserID=-1";} url=chatDir+"&settings="+_this._365call_settings+"&ClientID="+_this._365call_ClientID;} else{var chatDir;if(_this.win_url.length>0){chatDir=_this.win_url;if(_this.win_url.toLowerCase().indexOf("onlinechat2")!=-1) chatDir+="?h="+escape(_365webcall_GetUrlSub(_this._365call_host));else chatDir+="?h="+escape(_this._365call_host);} else{chatDir=_this._365call_host+"chat/ChatWin3.aspx?h=";} url=chatDir+"&settings="+_this._365call_settings+"&ClientID="+_this._365call_ClientID+"&listGroup="+listGroup.toString();} url+="&chs="+_this._365call_charset;if(_this.skin_class.length>0) url+="&sk="+escape(_this.skin_class);if(_this._365call_l_language.length>0) url+="&LL="+_this._365call_l_language;if(_this._365call_MSNPassport.length>0) url+="&msn="+escape(_this._365call_MSNPassport);if(_this._xaduid.length>0) url+="&xuid="+escape(_this._xaduid);if(typeof(_365call_memberID)!='undefined'&&_365call_memberID.length>0&&_365call_memberID!="0") url+="&memberid="+escape(_365call_memberID);else if(typeof(_webcall_memberID)!='undefined'&&_webcall_memberID.length>0&&_webcall_memberID!="0") url+="&memberid="+escape(_webcall_memberID);if(typeof(_365call_clientName)!='undefined'&&_365call_clientName.length>0) url+="&name="+escape(_365call_clientName);else if(typeof(_webcall_clientName)!='undefined'&&_webcall_clientName.length>0) url+="&name="+escape(_webcall_clientName);if(typeof(_365call_note)!='undefined'&&_365call_note.length>0) url+="¬e="+escape(_365call_note);else if(typeof(_webcall_note)!='undefined'&&_webcall_note.length>0) url+="¬e="+escape(_webcall_note);url+=_365groups_GetBaseData();if(_this.Pop_mbed==1){url+="&v=5";if((_365call_Browser()=="sougou"||this.aBlank||this.isMobile)&&typeof(obj)!='undefined'){obj.href=url;return true;} else{var _webcall_left=(screen.width-_this._365call_box_width)/2;var _webcall_top=(screen.height-_this._365call_box_height)/2;window.open(url,_this._365call_settings+"0","width="+_this._365call_box_width+",height="+_this._365call_box_height+", top="+_webcall_top+",left="+_webcall_left+",toolbar=no, menubar=no, scrollbars=no, resizable=yes,location=no, status=no,center=yes");return false;}} else{_this.onOpenWebChatWin1(url);return false;}} this.AdStatusUpdate=function(id){if(id==0) return;var url=_this._365call_host+"U.aspx?id="+id;$365call_GetJsData(url,"_365call_AdStatusUpdate");} this.MoCollection=function(p){var url=_this._365call_host+"mc.aspx?settings="+_this._365call_settings+"&c="+_this._365call_ClientID+"&p="+p+"&m=0&l="+_this._365call_l_language+_365groups_GetBaseData();console.log(url);$365call_GetJsData(url,"_aiwe_Command");} this.InsertStatWeb=function(){if(_this.StatWebInserted==1) return;_this.StatWebInserted=1;var url=_this._365call_host+"I.aspx?cb="+_this._name+".onInsertStatWebAvailable"+"&ch="+_this._365call_charset+"&a="+_this._365call_AccountID+"&u="+_this._365call_UserID+"&c="+_this._365call_ClientID+"&alx="+_this.alexa.toString()+ _365groups_GetBaseData();$365call_GetJsData(url,"_365call_Command");} this._getCommandFromServer=function(){if(_this._365groups_UID.length==0) return;var url=_this._365call_host+"chat/applyStatus.aspx?uID="+_this._365groups_UID+"&CallCount="+_this._365groups_CallCount.toString()+"&AccountID="+_this._365call_AccountID+"&UserID="+_this._365call_UserID+"&charset="+_this._365call_charset+"&CallBackFunction="+_this._name+".onCommandFromServerAvailable"+"&CallBackFunction1="+_this._name+".onAdMessageReceive"+"&f2="+_this._name+"._show365Message&timeStamp="+new Date().getTime().toString();var o_js_obj=$365call_get("_365call_Command");if(o_js_obj) o_js_obj.parentNode.removeChild(o_js_obj);var js_obj=document.createElement("script");js_obj.type="text/javascript";js_obj.setAttribute("src",url);js_obj.setAttribute("id","_365call_Command");_365call_oBody.appendChild(js_obj);window.setTimeout(function(){_this._getCommandFromServer();},_this.getCommandDelay);} this._show365Message=function(sContent){if(sContent.length==0) return;if(_this._365call_imFloat!=null) _this._365call_imFloat.showCon(sContent);else if(_this._365call_webchat_win!=null){_this._365call_webchat_win.showCon(sContent);}} this._show365MessageFrame=function(sContent){if(sContent.length==0) return;if(_this._365call_imFloat!=null) _this._365call_imFloat.showFrameCon(sContent);else if(_this._365call_webchat_win!=null){_this._365call_webchat_win.showFrameCon(sContent);}} this._getXaduid=function(){var x=_365call_GetQueryString("365webcall_xaduid");if(x!=null) this._xaduid=x;} this._UpdateClientInfo=function(){this._365call_iframe_update_no++;var _memberID;var _clientName;var _email;var _phone;var _msn;var _qq;var _note;if(typeof(_365call_memberID)=='undefined'||typeof(_365call_clientName)=='undefined'||typeof(_365call_email)=='undefined'||typeof(_365call_phone)=='undefined'||typeof(_365call_msn)=='undefined'||typeof(_365call_qq)=='undefined'||typeof(_365call_note)=='undefined'){if(typeof(_webcall_memberID)=='undefined'||typeof(_webcall_clientName)=='undefined'||typeof(_webcall_email)=='undefined'||typeof(_webcall_phone)=='undefined'||typeof(_webcall_msn)=='undefined'||typeof(_webcall_ww)=='undefined'||typeof(_webcall_qq)=='undefined'||typeof(_webcall_note)=='undefined'){if(this._365call_iframe_update_no<4){clearTimeout(_this._365call_iframe_update_art);_this._365call_iframe_update_art=window.setTimeout(function(){_this._UpdateClientInfo();},2000);} return;} else{_memberID=_webcall_memberID;_clientName=_webcall_clientName;_email=_webcall_email;_phone=_webcall_phone;_msn=_webcall_msn;_qq=_webcall_qq;_note=_webcall_note;}} else{_memberID=_365call_memberID;_clientName=_365call_clientName;_email=_365call_email;_phone=_365call_phone;_msn=_365call_msn;_qq=_365call_qq;_note=_365call_note;} if(this._365call_iframe_update==null) this._365call_iframe_update=this._createIframe("_365call_iframe_update");var url=_this._365call_host+"chat/UpdateClientInfo.aspx?AccountID="+_this._365call_AccountID+"&UserID="+_this._365call_UserID+"&MemberID="+escape(_memberID)+"&clientName="+escape(_clientName)+"&email="+escape(_email)+"&phone="+escape(_phone)+"&msn="+escape(_msn)+"&qq="+escape(_qq)+"¬e="+escape(_note)+"&labelID="+_this._365call_ClientID;if(typeof(_365call_login_time)!='undefined') url=url+"<="+escape(_365call_login_time);else if(typeof(_webcall_login_time)!='undefined') url=url+"<="+escape(_webcall_login_time);if(typeof(_365call_login_times)!='undefined') url=url+"<s="+escape(_365call_login_times);else if(typeof(_webcall_login_times)!='undefined') url=url+"<s="+escape(_webcall_login_times);if(typeof(_365call_regist_time)!='undefined') url=url+"&rt="+escape(_365call_regist_time);else if(typeof(_webcall_regist_time)!='undefined') url=url+"&et="+escape(_webcall_regist_time);if(typeof(_365call_deal_count)!='undefined') url=url+"&dc="+escape(_365call_deal_count);else if(typeof(_webcall_deal_count)!='undefined') url=url+"&dc="+escape(_webcall_deal_count);if(typeof(_365call_deal_weight)!='undefined') url=url+"&dw="+escape(_365call_deal_weight);else if(typeof(_webcall_deal_weight)!='undefined') url=url+"&dw="+escape(_webcall_deal_weight);if(typeof(_365call_contacts)!='undefined') url=url+"&ct="+escape(_365call_contacts);else if(typeof(_webcall_contacts)!='undefined') url=url+"&ct="+escape(_webcall_contacts);if(this._365call_iframe_update!=null) this._365call_iframe_update.src=url;} this._hideInvite=function(a){if(_365call_Browser()=="sougou"&&typeof(a)!='undefined'){window.setTimeout(function(){_this._hideInvite();},1000);return true;} if(_this._365call_inviteFloat) _this._365call_inviteFloat.hide2();_this._365call_Invite_Send=0;} this._hidePanel=function(){if(_this._365call_imFloat) _this._365call_imFloat.hide();} this._365call_onClosed=function(){this._createIframe(_this._365call_if_urlclosed);if(window.addEventListener){window.addEventListener("beforeunload",_this._PageClosed,false);} else if(window.attachEvent){window.attachEvent("onbeforeunload",_this._PageClosed);} if(window.addEventListener){window.addEventListener("unload",_this._PageClosed,false);} else if(window.attachEvent){window.attachEvent("onunload",_this._PageClosed);}} this._createIframe=function(iframeID){var oFrm=document.createElement("iframe");oFrm.setAttribute("id",iframeID);oFrm.style.display="none";if(_365call_oBody){if(_365call_oBody.firstChild) _365call_oBody.insertBefore(oFrm,_365call_oBody.firstChild);else _365call_oBody.appendChild(oFrm);} else if(_365call_oHead){if(_365call_oHead.firstChild) _365call_oHead.insertBefore(oFrm,_365call_oBody.firstChild);else _365call_oHead.appendChild(oFrm);} return oFrm;} this._getChatStatusFromServer=function(){if(_this.isH5) return;if(!(_this._365call_ChatWin_Available)) return var url=this._365call_host+"chat/getChatSessionInfo.aspx?s="+_this._365call_ChatSession+"&u="+this._365groups_UID.toString()+"&ll="+this._365call_l_language+"&inx="+this._365call_ChatWin_nIndex+"&b="+this._name+"._onChatStatusFromServerAvailable";$365call_GetJsData(url,"_365call_Get_ChatStatus");if(_this._365call_ChatWinStatus_act!=null) clearTimeout(_this._365call_ChatWinStatus_act);_this._365call_ChatWinStatus_act=window.setTimeout(function(){_this._getChatStatusFromServer();},_this._365call_GetChatStatus_Time);} this._SendCommand=function(cmd){if(!(_this._365call_ChatWin_Available)) return var url=this._365call_host+"chat/SendComand.aspx?s="+_this._365call_ChatSession+"&c="+cmd+"&b="+this._name+"._onSendCommandAvailable";$365call_GetJsData(url,"_SendCommand");} this._ChatUrl=function(v,p_user,invite){var chatDir;if(_this.win_url.length>0){chatDir=_this.win_url;if(_this.win_url.toLowerCase().indexOf("onlinechat2")!=-1){chatDir+="?h="+escape(_365webcall_GetUrlSub(_this._365call_host));} else{chatDir+="?h="+escape(_this._365call_host);} if((_this._365call_UserStatus=="offline"&&_this._365call_Robot)||p_user==-1){chatDir+="&r=1";}} else{if((_this._365call_UserStatus=="offline"&&_this._365call_Robot)||p_user==-1){chatDir=_this._365call_host+"chat/ChatWin3.aspx?v="+v+"&UserID=-1";} else{chatDir=_this._365call_host+"chat/ChatWin3.aspx?v="+v;}} var url=chatDir+"&settings="+_this._365call_settings;if(typeof(p_user)!='undefined'&&p_user>0) url+="&UserID="+p_user.toString();if(_this._365call_l_language.length>0) url+="&LL="+_this._365call_l_language;if(typeof(invite)!='undefined'&&invite==1){if(p_user>0) url+="&accessWay=2";else url+="&accessWay=1";} else{if(v==4) url+="&accessWay=3";} url+="&chs="+_this._365call_charset;if(_this.skin_class.length>0) url+="&sk="+escape(_this.skin_class);if(typeof(_365call_memberID)!='undefined'&&_365call_memberID.length>0&&_365call_memberID!="0") url+="&memberid="+escape(_365call_memberID);else if(typeof(_webcall_memberID)!='undefined'&&_webcall_memberID.length>0&&_webcall_memberID!="0") url+="&memberid="+escape(_webcall_memberID);if(typeof(_365call_clientName)!='undefined'&&_365call_clientName.length>0) url+="&name="+escape(_365call_clientName);else if(typeof(_webcall_clientName)!='undefined'&&_webcall_clientName.length>0) url+="&name="+escape(_webcall_clientName);if(typeof(_365call_note)!='undefined'&&_365call_note.length>0) url+="¬e="+escape(_365call_note);else if(typeof(_webcall_note)!='undefined'&&_webcall_note.length>0) url+="¬e="+escape(_webcall_note);url+="&ClientID="+_this._365call_ClientID+_365groups_GetBaseData();return url;} this._openBigWin=function(url){var _webcall_left=(screen.width-_this._365call_box_width)/2;var _webcall_top=(screen.height-_this._365call_box_height)/2;window.open(url,_this._365call_settings+"0","width="+_this._365call_box_width+",height="+_this._365call_box_height+", top="+_webcall_top+",left="+_webcall_left+",toolbar=no, menubar=no, scrollbars=no, resizable=yes,location=no, status=no,center=yes");} this._onChatStatusFromServerAvailable=function(nIndex,StatwebUID,finished,user_status,sessionID,video,lastMsg){if(_this._365call_webchat_win==null) return;if((StatwebUID!=_this._365groups_UID||finished=="1")&&_this._365call_ChatWin_nIndex>0){_this._365call_ChatWin_nIndex=0;if(_this._365call_webchat_win._365call_ad_show!=0){_this._365call_webchat_win._closeAd(_this);} _this._365call_GetChatStatus_Time=10000;return;} if(sessionID.length>0&&StatwebUID==_this._365groups_UID&&finished!="1") _this._365call_ChatSession=sessionID;if(nIndex>_this._365call_ChatWin_nIndex&&StatwebUID==_this._365groups_UID&&finished!="1"){_this._365call_ChatWin_nIndex=nIndex;_this._365call_webchat_win.showMsgPrompt(_365webcall_DecodeString(lastMsg),_this.isPreview);}} this._onSendCommandAvailable=function(cmd){if(cmd=="RequestClientEvaluate"){if(_this._365call_webchat_win==null) return;_this._365call_webchat_win.hide();_this._365call_webchat_win=null;_this._365call_ChatWin_Available=false;_365groups_SetCookie("_365webchat_open_url","");}} this._onExpandWin=function(e){_this._365call_GetChatStatus_Time=10000;} this._onIndentWin=function(e){_this._365call_GetChatStatus_Time=5000;if(_this._365call_ChatWinStatus_act!=null) clearTimeout(_this._365call_ChatWinStatus_act);_this._getChatStatusFromServer();} this._onExitWin=function(e){if(_this.isH5){if(_this._365call_webchat_win==null) return;_this._365call_webchat_win._sendCommand("CloseConfirm");} else{if(_this.graded==1) _this._SendCommand("RequestClientEvaluate");else setTimeout(function(){_this._onSendCommandAvailable("RequestClientEvaluate");},300);}} this._onHideWin=function(e){if(_this._365call_ChatWinStatus_act!=null) clearTimeout(_this._365call_ChatWinStatus_act);_this._365call_ChatWin_Available=false;} this._JumpUrl=function(){try{if(_this._prevent==0||_this._prevent_url.length==0){_this._prevent_url=_365groups_GetCookie("_365webcall_Prevent_Url");if(_this._prevent_url!=null&&_this._prevent_url.length>0) _this._prevent=1;} else{_365groups_SetCookie("_365webcall_Prevent_Url",_this._prevent_url,60*60);}} catch(e){} if(_this._prevent==1&&_this._prevent_url.length>0){var loc=window.location;try{if(window.parent!=null){if(window.parent.location!=null) loc=window.parent.location;}} catch(ex){loc=window.location;} loc.href=_this._prevent_url;}}} OnlineSupport_365webcall.prototype={set_Arg:function(a){this._365call_invite_content=a["_365call_invite_content"];this._365call_ClientID=a["_365call_ClientID"];this._365call_UserID=a["_365call_UserID"];this._365call_MSNPassport=a["_365call_MSNPassport"];this._365call_host=a["_365call_host"];this._365call_settings=a["_365call_settings"];this._365call_title=a["_365call_title"];this._365call_l_language=a["_365call_l_language"];this._365call_l_icon_width=a["_365call_l_icon_width"];this._365call_l_icon_padding=a["_365call_l_icon_padding"];this._365call_l_icon_top=a["_365call_l_icon_top"];this._365call_l_icon_align=a["_365call_l_icon_align"];this._365call_l_icon_valign=a["_365call_l_icon_valign"];this._365call_l_invite_width=a["_365call_l_invite_width"];this._365call_l_invite_height=a["_365call_l_invite_height"];this._365call_l_invite_padding=a["_365call_l_invite_padding"];this._365call_l_invite_top=a["_365call_l_invite_top"];this._365call_l_invite_align=a["_365call_l_invite_align"];this._365call_l_invite_valign=a["_365call_l_invite_valign"];this._365call_l_inviteWay=a["_365call_l_inviteWay"];this._365call_l_ifInvite=a["_365call_l_ifInvite"];this._365call_l_icon_hide=a["_365call_l_icon_hide"];this._365call_box_width=a["_365call_box_width"];this._365call_box_height=a["_365call_box_height"];this._365groups_CallCount=a["_365groups_CallCount"];this._365groups_UID=a["_365groups_UID"];this._365groups_dID=a["_365groups_dID"];this._365call_charset=a["_365call_charset"];this._365call_AccountID=a["_365call_AccountID"];this._365call_Inner_Invite=_365webcall_DecodeString(a["_365call_Inner_Invite"]);this._365call_Inner_Cont=_365webcall_DecodeString(a["_365call_Inner_Cont"]);this._365call_cssStr=a["_365call_cssStr"];this.noMonitoring=a["noMonitoring"];this._365call_UserStatus=a["_365call_UserStatus"];this._365call_Robot=a["_365call_Robot"];this._365call_IpAddress=a["_365call_IpAddress"];this._365call_timeLapse=a["_365call_timeLapse"];this._365call_new_win=a["_365call_new_win"];this.ActiveCall=a["ActiveCall"];this.ActiveWidth=a["ActiveWidth"];this.ActiveHeight=a["ActiveHeight"];this.ActiveLocation=a["ActiveLocation"];this.skin_class=a["skin_class"];this.close_button=a["close_button"];this.float_type=a["float_type"];this.float_type1=a["float_type1"];this.float_type2=a["float_type2"];this.float_type3=a["float_type3"];this.minIcon=a["minIcon"];this.showMinIcon=a["showMinIcon"];this.minIconWidth=a["minIconWidth"];this._365call_Show_Type=a["show_type"];this.blw_mode=a["blw_mode"];this.win_url=a["win_url"];this.leaveMsgTrans=a["leaveMsgTrans"];this.intoFrame=a["intoFrame"];this.miniLeaveWordRequire=a["miniLeaveWordRequire"];this.miniLeaveWordLocation=a["miniLeaveWordLocation"];this.Heartbeat=a["Heartbeat"];this.getCommandDelay=a["CommandDelay"];this._365call_adContent=a["adContent"];this._365call_webAdIPId=a["webAdIPId"];this._365call_AdID=a["AdID"];this._365call_urlInfo=a["urlInfo"];this._prevent=a["prevent"];this._prevent_url=a["prevent_url"];this.Active_lrSide=a["Active_lrSide"];this.Active_tbSide=a["Active_tbSide"];this.noFloat=a["noFloat"];this.InviteParaCustom=a["InviteParaCustom"];this.againTimeLapse=a["againTimeLapse"];this.writeHtml=a["writeHtml"];_365call_oBodys_num=a["oBodys_num"];this.XYTX_LOGIN_NAME=a["XYTX_LOGIN_NAME"];this.isMobile=a["isMobile"];this.mintext=a["mintext"];this.isPreview=a["isPreview"];this.minbgcolor=a["minbgcolor"];this.Pop_mbed=a["Pop_mbed"];this.aBlank=a["_aBlank"];this.graded=a["graded"];this.autoOpenChatWinTime=a["autoOpenChatWinTime"];this.noShow=a["noShow"];},Run:function(){this._JumpUrl();var _this=this;try{if(navigator.userAgent.toLowerCase().indexOf("alexa")!=-1) _this.alexa=1;} catch(e){} this.intoFrame=1;if(this._365call_Show_Type!=3){if(this._365call_Inner_Cont.length>0&&this._365call_Show_Type!=1){this._365call_imFloat=new showAdWin_365webcall();this._365call_imFloat._this_name=this._name+"._365call_imFloat";this._365call_imFloat._365call_ad_width=this._365call_l_icon_width;this._365call_imFloat._365call_ad_fromSide=this._365call_l_icon_padding;this._365call_imFloat._365call_ad_fromTop=this._365call_l_icon_top;this._365call_imFloat._365call_ad_location=this._365call_l_icon_align;if(this.noFloat==1){this._365call_imFloat.drag_status=0;} else{if(this.intoFrame==1){if(this._365call_Show_Type==2||this._365call_Show_Type==4){this._365call_imFloat.drag_status=2;this._365call_imFloat.drag_width=this._365call_l_icon_width-20;this._365call_imFloat._365call_ad_height_head=30;} else{this._365call_imFloat.drag_status=0;}} else{this._365call_imFloat.drag_status=1;}} this._365call_imFloat.switch_button=0;this._365call_imFloat.close_button=this.close_button;this._365call_imFloat._CloseButtonWidth=11;this._365call_imFloat._CloseButtonHeight=11;this._365call_imFloat._CloseButtonRight=2;this._365call_imFloat._CloseButtonTop=2;this._365call_imFloat._closeButton_url=this._365call_host+"image/style/close.gif";this._365call_imFloat.show_type=0;this._365call_imFloat._layer_con=this._365call_serviceIcon;this._365call_imFloat._floatHtml=this._365call_Inner_Cont;this._365call_imFloat._float_type=this.float_type;this._365call_imFloat._frame_css=this._365call_cssStr;this._365call_imFloat.writeHtml=this.writeHtml;this._365call_imFloat.autoOpenChatWinTime=this.autoOpenChatWinTime;if(this._365call_Show_Type==2) this._365call_imFloat.width_limit=1;this._365call_imFloat._onHide=function(e){if(_this._365call_minIcon_Float) _this._365call_minIcon_Float.show();};if(this.intoFrame==1) this._365call_imFloat._openFrame2();else this._365call_imFloat._open();if(this._365call_l_icon_hide!=1) this._365call_imFloat.show();this._365call_imFloat._onAdClick=function(e){_this.AdStatusUpdate(_this._365call_webAdIPId.toString());};} if(this._365call_Inner_Invite.length>0){this._365call_inviteFloat=new showAdWin_365webcall();this._365call_inviteFloat._this_name=this._name+"._365call_inviteFloat";this._365call_inviteFloat._365call_ad_width=this._365call_l_invite_width;this._365call_inviteFloat._365call_ad_height=this._365call_l_invite_height;this._365call_inviteFloat._365call_ad_fromSide=this._365call_l_invite_padding;this._365call_inviteFloat._365call_ad_fromTop=this._365call_l_invite_top;this._365call_inviteFloat._365call_ad_location=this._365call_l_invite_align;if(this.noFloat==1){this._365call_inviteFloat.drag_status=0;} else{if(this.intoFrame==1){this._365call_inviteFloat.drag_status=2;this._365call_inviteFloat.drag_width=this._365call_l_invite_width-20;this._365call_inviteFloat._365call_ad_height_head=50;} else{this._365call_inviteFloat.drag_status=1;}} this._365call_inviteFloat.switch_button=0;this._365call_inviteFloat.show_type=0;this._365call_inviteFloat.ShowEffect=1;this._365call_inviteFloat._layer_con=this._365call_inviteIcon;this._365call_inviteFloat._floatHtml=this._365call_Inner_Invite;this._365call_inviteFloat._float_type=this.float_type1;this._365call_inviteFloat._frame_css=this._365call_cssStr;this._365call_inviteFloat.writeHtml=this.writeHtml;if(this.intoFrame==1) _this._365call_inviteFloat._openFrame2();else _this._365call_inviteFloat._open();if(this._365call_l_ifInvite==1||(this._365call_UserStatus=="online"&&this._365call_l_ifInvite==2)){if(this._365call_l_inviteWay==1||(window.name!="365call"&&_365webcall_firstAccess())){var tmp1=function(){if(_this._365call_Invite_Send==0){_this._365call_Invite_Send=1;_this._365call_inviteFloat.show();window.name="365call";}} window.setTimeout(tmp1,this._365call_timeLapse*1000);if(_this.againTimeLapse>0){this._365call_inviteFloat._onHide=function(e){if(_this.againTimeLapse>0) window.setTimeout(tmp1,_this.againTimeLapse*1000);};}}}}} if(_this.Pop_mbed==2){this._365call_Invite_UserID=0;this.onOpenWebChatWin1();} else{var t1=_365groups_GetCookie("_365webchat_time");if(t1!=null&&t1.length>0&&((new Date().getTime())-parseInt(t1))/1000<300){this._365call_Invite_UserID=0;var url=_365groups_GetCookie('_365webchat_open_url');if(typeof(url)!="undefined"&&url.length>0){_this.noShow=0;this.onOpenWebChatWin1(url);}} else{if(_this.noShow>0) window.setTimeout(function(){_this._openChatWin(0);},_this.noShow*1000);}} if(this.miniLeaveWordRequire!=0) this.onOpenMiniLeaveWord();if(!this.noMonitoring){if(this._365call_Show_Type!=3) this.InsertStatWeb();this._365call_onClosed();} if(_this._365call_iframe_update_art==null) _this._365call_iframe_update_art=setTimeout(function(){_this._UpdateClientInfo();},500);},Show:function(){if(this._365call_Show_Type!=3){if(this._365call_imFloat) this._365call_imFloat.show();} else{if(this._365call_webchat_win) this._365call_webchat_win.show();}},onInsertStatWebAvailable:function(uid,did,callcount,adContent,webAdIPId,urlInfo,prevent,prevent_url,AdID){this._prevent=prevent;this._prevent_url=prevent_url;this._JumpUrl();this._365groups_CallCount=callcount;this._365call_webAdIPId=webAdIPId;this._365groups_UID=uid;this._365groups_dID=did;var _this=this;if(typeof(adContent)!='undefined'&&adContent.length>0){_this._show365Message(adContent);} if(typeof(urlInfo)!='undefined'&&urlInfo>0){$365call_uploadPageInfo(this._365call_host,this._365groups_UID);this._365call_urlInfo=urlInfo;} if(typeof(AdID)!='undefined'&&AdID>0){_this.onAdMessageShow(AdID);} if(_this.Heartbeat) window.setTimeout(function(){_this._getCommandFromServer();},200);},onCommandFromServerAvailable:function(Invite_UserID,CallCount,Content,SessionID){if(CallCount==77777){this._prevent=1;this._prevent_url=Content;this._JumpUrl();return;} if(this._365call_ChatSession.length==0) this._365call_ChatSession=SessionID;this._365call_Invite_UserID=Invite_UserID;this._365groups_CallCount=CallCount;this.onOpenWebChatWin1("",Content);},CreateIconImg:function(spanID,pUser,noImg){var oSp=$365call_get(spanID);var _this=this;if(oSp){if(_365webcall_getDomTagName(spanID)=="a"){oSp.style.cursor="pointer";oSp.onclick=function(){_this._openChatWin(pUser,0);} oSp.onmouseover=function(){_this._openChatWin(pUser,0,oSp);}} else{oSp.style.cursor="pointer";oSp.onclick=function(){_this._openChatWin(pUser);}} if(typeof(noImg)=='undefined'||noImg!="1"){if(typeof(noImg)!='undefined'&&noImg=="2"){var imgs=oSp.getElementsByTagName("img");for(var i=0;i0) sq="&sq="+escape(content);if(typeof(pUrl)=="undefined"||!pUrl||pUrl.length==0) this._365call_webchat_win._frame_url=_this._ChatUrl("4");else this._365call_webchat_win._frame_url=pUrl;_365groups_SetCookie('_365webchat_open_url',this._365call_webchat_win._frame_url);this._365call_webchat_win._frame_url+="&floatwin="+this._365call_Show_Type+"&sd="+this._365groups_UID+sq;if(this._365call_webchat_win._frame_url.indexOf("v=4")<0) this._365call_webchat_win._frame_url+="&v=4";if(this._365call_Invite_UserID>0) this._365call_webchat_win._frame_url+="&UserID="+this._365call_Invite_UserID.toString();this._365call_webchat_win._time_span=3000;this._365call_webchat_win._onHide=function(e){_this._onHideWin(e);};this._365call_webchat_win._onExit=function(e){_this._onExitWin(e);};this._365call_webchat_win._onExpand=function(e){_this._onExpandWin(e);};this._365call_webchat_win._onIndent=function(e){_this._onIndentWin(e);};this._365call_webchat_win._openFrame(this.minbgcolor);if(_this.noShow==0){_this._365call_ChatWin_Available=true;_this._365call_webchat_win.show();} _this.noShow=0;_this._365call_ChatWinStatus_act=window.setTimeout(function(){_this._getChatStatusFromServer();},5000);},onOpenMiniLeaveWord:function(){var _this=this;if(this._365webcall_miniLeaveWord==null) this._365webcall_miniLeaveWord=new showAdWin_365webcall();this._365webcall_miniLeaveWord._this_name=this._name+"._365webcall_miniLeaveWord";this._365webcall_miniLeaveWord._365call_ad_show_rate=10;var n=0;if((this.miniLeaveWordRequire&0x01)!=0) n++;if((this.miniLeaveWordRequire&0x04)!=0) n++;if((this.miniLeaveWordRequire&0x10)!=0) n++;if((this.miniLeaveWordRequire&0x40)!=0) n++;if((this.miniLeaveWordRequire&0x100)!=0) n++;if((this.miniLeaveWordRequire&0x400)!=0) n++;if((this.miniLeaveWordRequire&0x1000)!=0) n++;if((this.miniLeaveWordRequire&0x4000)!=0) n++;if((this.miniLeaveWordRequire&0x10000)!=0) n++;if((this.miniLeaveWordRequire&0x40000)!=0) n++;this._365webcall_miniLeaveWord.set_win_width(215);this._365webcall_miniLeaveWord.set_win_height(144+n*27);this._365webcall_miniLeaveWord._365call_ad_height_head=28;this._365webcall_miniLeaveWord._365call_ad_fromSide=0;this._365webcall_miniLeaveWord._365call_ad_fromTop=0;this._365webcall_miniLeaveWord._365call_ad_location=this.miniLeaveWordLocation+3;this._365webcall_miniLeaveWord.drag_status=0;this._365webcall_miniLeaveWord.switch_button=1;this._365webcall_miniLeaveWord.show_type=1;this._365webcall_miniLeaveWord._switchWidth=34;this._365webcall_miniLeaveWord._switchHeight=17;this._365webcall_miniLeaveWord._switchRight=12;this._365webcall_miniLeaveWord._switchTop=0;this._365webcall_miniLeaveWord._float_type=this.float_type;var pr=_365groups_GetBaseData();this._365webcall_miniLeaveWord._frame_url=this._365call_host+"chat/miniLeaveWord.aspx?settings="+this._365call_settings+"&ClientID="+this._365call_ClientID+pr+(this._365call_l_language.length>0?("&LL="+this._365call_l_language):"");this._365webcall_miniLeaveWord._time_span=5000;_this._365webcall_miniLeaveWord._switchButton_Indent_url=_this._365call_host+"chat/images/newChat2/close.gif";_this._365webcall_miniLeaveWord._switchButton_Expand_url=_this._365call_host+"chat/images/newChat2/zoom.gif";this._365webcall_miniLeaveWord._openFrame();},onAdMessageShow:function(AdID){var _this=this;if(_this._365call_AdMessage!=null){if(_this._365call_AdMessage._365call_ad_show==1) return;_this._365call_AdMessage._closeAd();} _this._365call_AdMessage=new showAdWin_365webcall();_this._365call_AdMessage._this_name=_this._name+"._365call_AdMessage";_this._365call_AdMessage.Zindex+=1000;_this._365call_AdMessage._365call_ad_show_rate=5;_this._365call_AdMessage._365call_ad_height=255;_this._365call_AdMessage._365call_ad_width=300;_this._365call_AdMessage._365call_ad_height_head=19;_this._365call_AdMessage._365call_ad_top=0;_this._365call_AdMessage._365call_ad_fromSide=0;_this._365call_AdMessage._365call_ad_fromTop=0;_this._365call_AdMessage._365call_ad_location=3;_this._365call_AdMessage.drag_status=0;_this._365call_AdMessage.switch_button=0;_this._365call_AdMessage.show_type=1;_this._365call_AdMessage._switchWidth=15;_this._365call_AdMessage._switchHeight=15;_this._365call_AdMessage._switchRight=5;_this._365call_AdMessage._switchTop=5;_this._365call_AdMessage._float_type=0;_this._365call_AdMessage._frame_url=_this._365call_host+"showQQMsg.html?id="+AdID;_this._365call_AdMessage._time_span=1000;_this._365call_AdMessage._switchButton_Indent_url=_this._365call_host+"image/style/exact/qq/bot_01.gif";_this._365call_AdMessage._switchButton_Expand_url=_this._365call_host+"image/style/exact/qq/bot_01a.gif";_this._365call_AdMessage._floatHtml='';_this._365call_AdMessage._onAdClick1=function(e){_this._365call_AdMessage.removeClosePrompt();_this._365call_AdMessage.hide();_this.AdStatusUpdate(AdID);};_this._365call_AdMessage._open();},onAdMessageReceive:function(height,width,head_height,fromBottom,location,fromSide,AcctID,StyleID,callRequestID){var _this=this;if(_this._365call_AdMessage!=null){if(_this._365call_AdMessage._365call_ad_show==1) return;_this._365call_AdMessage._closeAd();} _this._365call_AdMessage=new showAdWin_365webcall();_this._365call_AdMessage._this_name=_this._name+"._365call_AdMessage";_this._365call_AdMessage._365call_ad_show_rate=5;_this._365call_AdMessage._365call_ad_height=height;_this._365call_AdMessage._365call_ad_width=width;_this._365call_AdMessage._365call_ad_height_head=head_height;_this._365call_AdMessage._365call_ad_top=0;_this._365call_AdMessage._365call_ad_fromSide=fromSide;_this._365call_AdMessage._365call_ad_fromTop=fromBottom;_this._365call_AdMessage._365call_ad_location=4;_this._365call_AdMessage.drag_status=0;_this._365call_AdMessage.switch_button=1;_this._365call_AdMessage.show_type=5;_this._365call_AdMessage._switchWidth=15;_this._365call_AdMessage._switchHeight=15;_this._365call_AdMessage._switchRight=5;_this._365call_AdMessage._switchTop=5;_this._365call_AdMessage._float_type=_this.float_type3;_this._365call_AdMessage._frame_url=_this._365call_host+"365webcall_asd.html";_this._365call_AdMessage._time_span=5000;_this._365call_AdMessage._switchButton_Indent_url=_this._365call_host+"image/style/exact/qq/bot_01.gif";_this._365call_AdMessage._switchButton_Expand_url=_this._365call_host+"image/style/exact/qq/bot_01a.gif";_this._365call_AdMessage._openFrame();}} if(typeof(OnlineSupport_365webcall_loaded)=='undefined'||!OnlineSupport_365webcall_loaded) var OnlineSupport_365webcall_loaded=true;var _365call_arr_171291 = {_365call_invite_content:"您好!如有问题请点击在线咨询", _365call_ClientID:"2f3a8302-1dd3-4379-9948-7ecbf85b9cd7", _365call_UserID:"90747", _365call_MSNPassport:"", _365call_host:"https://www.aiwetalk.com/", _365call_settings:"mw7Nm00N676bb7z3AI6PbPz3AmPmNImz3AX6mmPX", _365call_title:"在线咨询", _365call_l_language:"0", _365call_l_icon_width:0, _365call_l_icon_padding:0, _365call_l_icon_top:100, _365call_l_icon_align:"1", _365call_l_icon_valign:"top", _365call_l_invite_width:400, _365call_l_invite_padding:-1, _365call_l_invite_top:-1, _365call_l_invite_align:"0", _365call_l_invite_valign:"0", _365call_l_inviteWay:1, _365call_l_ifInvite:0, _365call_l_icon_hide:0, _365call_box_width:800, _365call_box_height:570, _365groups_CallCount:0, _365groups_UID:"0", _365groups_dID:"0", _365call_charset:"0", _365call_AccountID:"80448", _365call_Inner_Invite:"z3CxE9z20e3S44z3Dz22eS33Xw0z5FEC9EJQBJq3Qbz22z3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z3CxE9z20e3S44z3Dz22eS33Xw0z5FEC9EJQdhCJQCJz22z3Ez0Dz0Az09z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z3CxE9z20e3S44z3Dz22eS33Xw0z5FEC9EJQz5FehCJQCJz5FFSCQ3z22z3Ez0Dz0Az09z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z3C4FSCz20Exz3Dz22z5FXw0eS33z5F4FSCdhCJz5FpC3ECQBDFFhUJz5FXw0gQteS33z5FmPmNImz22z20e3S44z3Dz22eS33Xw0z5FEC9EJQz5FJQAJz5F6mz22z204Jq3Qz3Dz22Fh4EJEhCz3ASt4h3DJQz3Bz20JhFz3AN6FAz3Bz203QoJz3A6z3Bz22z3EZ60A8Z597DZFF01Z5982Z6709Z95EEZ9898Z8BF7Z70B9Z51FBZ5728Z7EBFZ54A8Z8BE2z3Cz2F4FSCz3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z3CSz20e3S44z3Dz22eS33Xw0z5FEC9EJQz5FhFQCd8SJz22z204Jq3Qz3Dz22eDU4hUz3Az20FhECJQUz22z20hCe3EeVz3Dz22lS9S4eUEFJz3AFSUQCJz2EpC3ECQBDFFhUJz5FXw0gQteS33z5FmPmNImz2Ez5FhFQCd8SJ1ECz28FSUQCJz2EpC3ECQBDFFhUJz5FXw0gQteS33z5FmPmNImz2Ez5FXw0eS33z5FYC9EJQz5Fa4QUYRz2Cz20mz29z3BFSUQCJz2EpC3ECQBDFFhUJz5FXw0gQteS33z5FmPmNImz2Ez5F8ExQYC9EJQz28JUDQz29z3Bz22z20hCOhD4Qh9QUz3Dz22lS9S4eUEFJz3AFSUQCJz2EpC3ECQBDFFhUJz5FXw0gQteS33z5FmPmNImz2Ez5FhFQCd8SJ1ECz28FSUQCJz2EpC3ECQBDFFhUJz5FXw0gQteS33z5FmPmNImz2Ez5FXw0eS33z5FYC9EJQz5Fa4QUYRz2Cmz2CJ8E4z29z3Bz22z20JSUfQJz3Dz22z5Ft3SCVz22z3Ez3Cz2FSz3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z3CxE9z20e3S44z3Dz22eS33Xw0z5FEC9EJQz5F8ExQz22z204Jq3Qz3Dz22eDU4hUz3Az20FhECJQUz22z20hCe3EeVz3Dz22lS9S4eUEFJz3AFSUQCJz2EpC3ECQBDFFhUJz5FXw0gQteS33z5FmPmNImz2Ez5F8ExQYC9EJQz28z29z3Bz22z3Ez3Cz2FxE9z3Ez0Dz0Az09z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z3CSz208UQoz3Dz228JJFz3Az2Fz2Fgggz2ESEgQJS3Vz2EehOz2Fz22z20JSUfQJz3Dz22z5Ft3SCVz22z204Jq3Qz3Dz22Fh4EJEhCz3ASt4h3DJQz3Bz20thJJhOz3A6z3Bz20UEf8Jz3A6z3Bz203ECQz2D8QEf8Jz3Am0FAz3Bz22z20e3S44z3Dz22eS33Xw0z5FEC9EJQz5FJQAJz5F6Nz22z3EGhgQUQxz20tqz20SEgQJS3Vz3Cz2FSz3Ez0Dz0Az09z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z3Cz2FxE9z3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z3CxE9z20e3S44z3Dz22eS33Xw0z5FEC9EJQz5F3hfhz22z20z3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z3CSz208UQoz3Dz228JJFz3Az2Fz2Fgggz2ESEgQJS3Vz2EehOz2Fz22z20JSUfQJz3Dz22z5Ft3SCVz22z3Ez3CEOfz204Uez3Dz228JJFz3Az2Fz2Fgggz2ESEgQJS3Vz2EehOz2FEOSfQz2F4Jq3Qz2F3hfhz2EfEoz22z20gExJ8z3Dz220Nz22z208QEf8Jz3Dz22m7z22z20thUxQUz3Dz226z22z3Ez3Cz2FSz3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z3Cz2FxE9z3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z3Cz2FxE9z3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z3Cz2FxE9z3E", _365call_Inner_Cont:"z3CxE9z20e3S44z3Dz22z5FXw0gQteS33z5F3E4Jz22z3Ez3CxE9z20Exz3Dz22O4fz5FehDCJz22z20e3S44z3Dz22EVz2DO4fz2DehDCJz20o3hSJz2DO4fz2DehDCJz22z3E6z3Cz2FxE9z3Ez3CSz20z20hCe3EeVz3Dz22lS9S4eUEFJz3Ae8SJz286z2Cz206z29z3Bz22z20z20JSUfQJz3Dz22z5Ft3SCVz22z3Ez3CEOfz204Uez3Dz228JJFz3Az2Fz2Fgggz2ESEgQJS3Vz2EehOz2FEOSfQz2Fo3hSJgECxhgz2FCQg4z2FCQg4z5Fmz2EFCfz22z20z2Fz3Ez3CFz3EZ54A8Z8BE2Z5BA2Z670Dz3Cz2FFz3Ez3Cz2FSz3Ez3CxE9z20Exz3Dz22O4fz5FehDCJz22z20e3S44z3Dz22EVz2DO4fz2DehDCJz20o3hSJz2DO4fz2DehDCJz22z3E6z3Cz2FxE9z3Ez3CSz20z20hCe3EeVz3Dz22lS9S4eUEFJz3Ae8SJz28z2Dmz2Cz206z29z3Bz22z20z20JSUfQJz3Dz22z5Ft3SCVz22z3Ez3CEOfz204Uez3Dz228JJFz3Az2Fz2Fgggz2ESEgQJS3Vz2EehOz2FEOSfQz2Fo3hSJgECxhgz2FCQg4z2FCQg4z5FXz2EFCfz22z20z2Fz3Ez3CFz3EZ673AZ5668Z4EBAz3Cz2FFz3Ez3Cz2FSz3Ez3CSz20e3S44z3Dz22z5FXw0gQteS33z5F4ehxQz22z20hCOhD4Qh9QUz3Dz22lS9S4eUEFJz3Az5FXw0eS33z5Fd8SCfQcUSOQ1ExJ8z28Nm6z29z3Bz22z20hCOhD4QhDJz3Dz22lS9S4eUEFJz3Az5FXw0eS33z5Fd8SCfQcUSOQ1ExJ8z2876z29z3Bz22z20z3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z3CxE9z20e3S44z3Dz22xE9EOfz22z3Ez3CEOfz20e3S44z3Dz22EOfehxQz22z204Uez3Dz228JJFz3Az2Fz2Fgggz2ESEgQJS3Vz2EehOz2Fe8SJz2FDF3hSxEOfz2F4ehxQz2F76bb7z2FN6NX60z2F8QSxz5FQ6X6bxP7z2DoQQoz2DbX7Xz2DtP0oz2Dt7QS7bm77ewSz2ElFfz22z20z2Fz3Ez3Cz2FxE9z3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z3CEOfz204Uez3Dz228JJFz3Az2Fz2Fgggz2ESEgQJS3Vz2EehOz2FEOSfQz2Fo3hSJgECxhgz2FBehxQz2FBehxQz5Fmz2EFCfz22z20z2Fz3Ez3CFz3EZ5FAEZ4FE1z3Cz2FFz3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z20z3Cz2FSz3Ez3CSz20e3S44z3Dz22z5FXw0gQteS33z5FF8hCQz22z20hCOhD4Qh9QUz3Dz22lS9S4eUEFJz3Az5FXw0eS33z5Fd8SCfQcUSOQ1ExJ8z28NP6z29z3Bz22z20hCOhD4QhDJz3Dz22lS9S4eUEFJz3Az5FXw0eS33z5Fd8SCfQcUSOQ1ExJ8z2876z29z3Bz22z20z3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z3CxE9z20e3S44z3Dz22xE9F8hCQz22z3Em7P0PmX7bw6z3Cz2FxE9z3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z3CEOfz204Uez3Dz228JJFz3Az2Fz2Fgggz2ESEgQJS3Vz2EehOz2FEOSfQz2Fo3hSJgECxhgz2FG8hCQz2FG8hCQz5FNz2EFCfz22z20z2Fz3Ez3CFz3EZ7535Z8BDDz3Cz2FFz3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z3Cz2FSz3Ez3CSz20e3S44z3Dz22z5FXw0gQteS33z5FF8hCQz22z3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z3CxE9z20Exz3Dz22F8hCQK4Vz22z20e3S44z3Dz22F8hCQK4Vz22z204Jq3Qz3Dz22hFSeEJqz3Az20mz3Bz203QoJz3Az20z2DNPbFAz3Bz22z3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z3CxE9z20e3S44z3Dz22eS33z22z3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z3C4FSCz20e3S44z3Dz224FSCmz22z3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z3CECFDJz20JqFQz20z3Dz20z22JQAJz22z20Exz3Dz22ECFDJz2DF8hCQeS33z22z20e3S44z3Dz22ECFDJz2DF8hCQeS33z22z20F3SeQ8h3xQUz3Dz22Z8F93Z5165Z624BZ673AZ53F7Z7801z22z20OSA3QCfJ8z3Dz22mXz22z3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z3Cz2F4FSCz3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z3C4FSCz20Exz3Dz22eS33JhOQz22z20e3S44z3Dz22eS33JhOQz22z204Jq3Qz3Dz22tSeVfUhDCxz3Az20Uftz28NXz2Cz20m0Nz2Cz20N0Nz29z3Bz20eDU4hUz3Az20FhECJQUz3Bz22z3EZ7ED9Z6211Z56DEZ7535z3Cz2F4FSCz3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z3CFz20Exz3Dz22SgJEFmz22z20e3S44z3Dz22JEFz22z3EZ514DZ8D39Z7535Z8BDDZ54A8Z8BE2Z670DZ52A1ZFF0CZ8BF7Z653EZ5FC3Z63A5Z542Cz3Cz2FFz3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z3CFz20Exz3Dz22SgJEFNz22z20e3S44z3Dz22eS33JEFz203QJJQUmNUQxz208ExQz22z204Jq3Qz3Dz22xE4F3Sqz3Az20ChCQz3Bz22z3EZ8BF7Z8F93Z5165Z6B63Z786EZ624BZ673AZ53F7z3Cz2FFz3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z3CFz20Exz3Dz22SgJEFXz22z20e3S44z3Dz22gSEJJEFz208ExQz22z204Jq3Qz3Dz22xE4F3Sqz3Az20ChCQz3Bz22z3EZ547CZ53EBZ6210Z529FZFF0CZ8BF7Z7559Z610FZ63A5Z542CZ624BZ673AZ6765Z7535z3Cz2FFz3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z3Cz2FxE9z3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z3Cz2FxE9z3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z3C4FSCz20hCe3EeVz3Dz2248hgF8hCQK4Vz28J8E4z29z22z3Ez0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z3CEOfz204Uez3Dz228JJFz3Az2Fz2Fgggz2ESEgQJS3Vz2EehOz2FEOSfQz2Fo3hSJgECxhgz2FG8hCQz2FeS33JhOQz5FNz2EFCfz22z3Ez3CFz3EZ7535Z8BDDZ56DEZ547Cz3Cz2FFz3Ez3Cz2F4FSCz3Ez0Dz0Az20z20z20z20z20z20z20z20z3Cz2FSz3Ez3CSz20Exz3Dz222ECVz22z208UQoz3Dz228JJF4z3Az2Fz2Fgggz2ESEgQJS3Vz2EehOz2FgQtN6Nmz2FCQg5QfE4JQUz2E8JO3z22z20JSUfQJz3Dz22z5Ft3SCVz22z3Ez3CEOfz204Uez3Dz228JJFz3Az2Fz2Fgggz2ESEgQJS3Vz2EehOz2FEOSfQz2Fo3hSJgECxhgz2F2ECVz2F2ECVz5Fmz2EFCfz22z20z2Fz3Ez3CFz3EZ6CE8Z518Cz3Cz2FFz3Ez3Cz2FSz3Ez3CSz20hCe3EeVz3Dz22lS9S4eUEFJz3Az5FXw0gQteS33ThJhkhFz28z29z3Bz22z3Ez3CEOfz204Uez3Dz228JJFz3Az2Fz2Fgggz2ESEgQJS3Vz2EehOz2FEOSfQz2Fo3hSJgECxhgz2FkhFz2FkhFz5Fmz2EFCfz22z20z2Fz3Ez3CFz3EZ8FD4Z56DEZ9876Z90E8z3Cz2FFz3Ez3Cz2FSz3Ez3Cz2FxE9z3Ez3CxE9z20Exz3Dz22CQgO4fz22z20e3S44z3Dz22O4fyE4EJhUz22z20hCe3EeVz3Dz22lS9S4eUEFJz3Ae8SJz286z2Cz206z29z3Bz22z204Jq3Qz3Dz22eDU4hUz3AFhECJQUz3Bz20gExJ8z3Az20SDJhz3Bz20OSUfECz3Am6FAz20m6FAz206z206z3Bo3hSJz3AUEf8Jz3BFh4EJEhCz3ADC4QJz3Bz20FSxxECfz2D3QoJz3A6z3BOSAz2DgExJ8z3AN66FAz3Bz22z3Ez0Dz0Az3Cz2FxE9z3Ez0Dz0Az3C4eUEFJz20JqFQz3Dz22JQAJz2FlS9S4eUEFJz22z3Ez0Dz0AoDCeJEhCz20e8SJz28Dz2Cz20Fz29z7Bz0Dz0A8COFJz28z29z3Bz20z0Dz0Az5FXw0eS33z5Fd8SCfQcUSOQ1ExJ8z2876z29z3Bz20z0Dz0AFSUQCJz2EpC3ECQBDFFhUJz5FXw0gQteS33z5FmPmNImz2Ez5F8ExQYC9EJQz28z29z3Bz0Dz0AFSUQCJz2EpC3ECQBDFFhUJz5FXw0gQteS33z5FmPmNImz2EChB8hgz3D6z3Bz0Dz0AEoz28Fz21z3D6z29z0Dz0AFSUQCJz2EpC3ECQBDFFhUJz5FXw0gQteS33z5FmPmNImz2Ez5FhFQCTUhDFd8SJ1ECz28Fz29z3Bz0Dz0AQ34Qz0Dz0AFSUQCJz2EpC3ECQBDFFhUJz5FXw0gQteS33z5FmPmNImz2Ez5FhFQCd8SJ1ECz28Dz29z3Bz0Dz0Az7Dz0Dz0Az0Dz0Az0Dz0A9SUz2048hgdS33OQmz3DCD33z3Bz0Dz0A9SUz2048hgdS33OQNz3DCD33z3Bz0Dz0AoDCeJEhCz2048hgF8hCQK4Vz28Q9QCJz29z7Bz0Dz0Az20z20z20z20Eoz28Q9QCJz29z7Bz0Dz0Az20z20z20z20z20z20z20z20Eoz20z2848hgdS33OQmz20z21z3Dz20CD33z29z0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20e3QSUkEOQhDJz2848hgdS33OQmz29z3Bz0Dz0Az20z20z20z20z20z20z20z20Eoz20z2848hgdS33OQNz20z21z3Dz20CD33z29z0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20e3QSUkEOQhDJz2848hgdS33OQNz29z3Bz0Dz0Az20z20z20z20z7Dz0Dz0Az20z20z20z209SUz20F8hCQS4Vz20z3Dz20z24Xw0eS33z5FfQJz28z22F8hCQK4Vz22z29z3Bz0Dz0Az20z20z20z20Eoz20z28F8hCQS4Vz29z0Dz0Az20z20z20z20z7Bz0Dz0Az20z20z20z20z20z20z20z20Eoz20z28F8hCQS4Vz2Ee3S44iSOQz20z3Dz3Dz20z22F8hCQK4Vz22z29z0Dz0Az20z20z20z20z20z20z20z20z7Bz0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z5FXw0eS33z5Fd8SCfQcUSOQ1ExJ8z28X06z29z3Bz0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20F8hCQS4Vz2Ee3S44iSOQz20z3Dz20z22F8hCQK4Vz2048hgz22z3Bz0Dz0Az20z20z20z20z20z20z20z20z7Dz0Dz0Az20z20z20z20z20z20z20z20Q34Qz0Dz0Az20z20z20z20z20z20z20z20z7Bz0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z5FXw0eS33z5Fd8SCfQcUSOQ1ExJ8z2876z29z3Bz20z0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20F8hCQS4Vz2Ee3S44iSOQz20z3Dz20z22F8hCQK4Vz22z3Bz0Dz0Az20z20z20z20z20z20z20z20z7Dz0Dz0Az20z20z20z20z7Dz0Dz0Az7Dz0Dz0Az28oDCeJEhCz28z29z7Bz0Dz0A3QJz20ECFDJF8hCQeS33z20z3Dz20z24Xw0eS33z5FfQJz28z22ECFDJz2DF8hCQeS33z22z29z3Bz0Dz0AEoz20z28ECFDJF8hCQeS33z29z20z7Bz0Dz0Az20z20z20z20ECFDJF8hCQeS33z2ESxxH9QCJ2E4JQCQUz28z22VQqDFz22z2Cz20oDCeJEhCz20z28Qz29z20z7Bz0Dz0Az20z20z20z209SUz20OhtE3Q5Qfz20z3Dz20z2Fz28mz5BXz2DIz5Dz5Cxz7B6z2CIz7Dz7Cmz29z2Fz3Bz0Dz0Az20z20z20z209SUz20VQqDFz5F9S3DQz20z3Dz20ECFDJF8hCQeS33z2E9S3DQz2EUQF3SeQz28z2Fz5C4z2Ffz2Cz20z27z27z29z3Bz0Dz0Az20z20z20z209SUz20CQgyS3DQz20z3Dz20z27z27z3Bz0Dz0Az20z20z20z20CQgyS3DQz20z3Dz20OhtE3Q5Qfz2EQAQez28VQqDFz5F9S3DQz29z20z21z3Dz3Dz20CD33z20z3Fz20OhtE3Q5Qfz2EQAQez28VQqDFz5F9S3DQz29z5B6z5Dz20z3Az20z27z27z3Bz0Dz0Az20z20z20z20CQgyS3DQz20z3Dz20CQgyS3DQz2EJhBJUECfz28z29z2EUQF3SeQz28z2Fz28z2Ez7BXz7Dz29z2Fz2Cz20z27z24mz27z29z3Bz0Dz0Az20z20z20z20CQgyS3DQz20z3Dz20CQgyS3DQz2EJhBJUECfz28z29z2EUQF3SeQz28z2Fz20z28z2Ez7B7z7Dz29z2Fz2Cz20z27z24mz27z29z3Bz0Dz0Az20z20z20z20Eoz20z28Qz2EVQqdhxQz20z3Dz3Dz207z20z7Cz7Cz20Qz2EVQqdhxQz20z3Dz3Dz20bwz29z7Bz0Dz0Az20z20z20z20z20z20z20z20Eoz20z28CQgyS3DQz5BCQgyS3DQz2E3QCfJ8z20z2Dz20mz5Dz20z3Dz3Dz3Dz20z27z20z27z29z20CQgyS3DQz20z3Dz20CQgyS3DQz2E43EeQz286z2Cz20CQgyS3DQz2E3QCfJ8z20z2Dz20mz29z3Bz7Dz0Dz0Az20z20z20z20ECFDJF8hCQeS33z2E9S3DQz20z3Dz20CQgyS3DQz3Bz0Dz0Az7Dz29z3Bz0Dz0AECFDJF8hCQeS33z2ESxxH9QCJ2E4JQCQUz28z22oheD4z22z2Cz20oDCeJEhCz20z28Qz29z20z7Bz0Dz0AEoz20z2848hgdS33OQNz20z21z3Dz20CD33z29z0Dz0Az20z20z20z20e3QSUkEOQhDJz2848hgdS33OQNz29z3Bz0Dz0A9SUz20SgJEFXz20z3Dz20z24Xw0eS33z5FfQJz28z22SgJEFXz22z29z3Bz0Dz0Az20z20z20z20Eoz20z28SgJEFXz2E4Jq3Qz2ExE4F3Sqz20z21z3Dz20z22ChCQz22z29z0Dz0Az20z20z20z20z20z20z20z20UQJDUCz20oS34Qz3Bz0Dz0Az20z20z20z20ECFDJF8hCQeS33z2E4Jq3Qz2EthUxQUdh3hUz20z3Dz20z22z23mPI7oez22z3Bz0Dz0Az20z20z20z20eS33JhOQz2E4Jq3Qz2Ee44kQAJz20z3Dz20z22tSeVfUhDCxz3Az23mPI7cdz22z3Bz0Dz0Az7Dz29z3Bz0Dz0Az7Dz0Dz0A9SUz20eS33JhOQz20z3Dz20z24Xw0eS33z5FfQJz28z22eS33JhOQz22z29z3Bz0Dz0AEoz20z28eS33JhOQz29z20z7Bz0Dz0Az20z20z20z20eS33JhOQz2ESxxH9QCJ2E4JQCQUz28z22e3EeVz22z2Cz20oDCeJEhCz20z28Qz29z7Bz0Dz0Az20z20z20z20z20z20z20z209SUz20SgJEFXz20z3Dz20z24Xw0eS33z5FfQJz28z22SgJEFXz22z29z3Bz0Dz0Az0Dz0Az20z20z20z20z20z20z20z20Eoz20z28SgJEFXz2E4Jq3Qz2ExE4F3Sqz20z21z3Dz20z22ChCQz22z29z0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20UQJDUCz20oS34Qz3Bz0Dz0Az0Dz0Az20z20z20z20z20z20z20z209SUz209S3z20z3Dz20ECFDJF8hCQeS33z2E9S3DQz3Bz0Dz0Az20z20z20z20z20z20z20z209SUz20UQfz5FF8hCQz20z3Dz20CQgz205QfHAFz28z27z20z27z2Cz20z22fz22z29z0Dz0Az20z20z20z20z20z20z20z209S3z20z3Dz209S3z2EUQF3SeQz28UQfz5FF8hCQz2Cz20z22z22z29z3Bz0Dz0Az20z20z20z20z20z20z20z209SUz20UQfz20z3Dz20z2Fz5Emz5BXz2DIz5Dz5Cxz7BIz7Dz24z2Fz3Bz0Dz0Az20z20z20z20z20z20z20z209SUz20o3Sfz20z3Dz20UQfz2EJQ4Jz289S3z29z3Bz0Dz0Az20z20z20z20z20z20z20z20Eoz20z28z21o3Sfz29z20z7Bz0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20ECFDJF8hCQeS33z2E4Jq3Qz2Ee44kQAJz20z3Dz20z22thUxQUz2Deh3hUz3Az23c6bmXbz20z21EOFhUJSCJz3Bz22z3Bz0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z24Xw0eS33z5FfQJz28z22SgJEFmz22z29z2E4Jq3Qz2ExE4F3Sqz20z3Dz20z22ChCQz22z3Bz0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z24Xw0eS33z5FfQJz28z22SgJEFNz22z29z2E4Jq3Qz2ExE4F3Sqz20z3Dz20z22t3heVz22z3Bz0Dz0Az20z20z20z20z20z20z20z20z7Dz20Q34Qz20z7Bz0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z24Xw0eS33z5FfQJz28z22SgJEFmz22z29z2E4Jq3Qz2ExE4F3Sqz20z3Dz20z22ChCQz22z3Bz0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z24Xw0eS33z5FfQJz28z22SgJEFNz22z29z2E4Jq3Qz2ExE4F3Sqz20z3Dz20z22ChCQz22z3Bz0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z24Xw0eS33z5FfQJz28z22SgJEFXz22z29z2E4Jq3Qz2ExE4F3Sqz20z3Dz20z22t3heVz22z3Bz0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20eS33JhOQz2EECCQUkQAJz20z3Dz20z22Z5DF2Z53D1Z9001z22z3Bz0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20eS33JhOQz2E4Jq3Qz2Ee44kQAJz20z3Dz20z22tSeVfUhDCxz3Az23bHMmcRz22z3Bz0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20gECxhgz2E4QJkEOQhDJz28oDCeJEhCz20z28z29z20z7Bz0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z209SUz20F8hCQS4Vz20z3Dz20z24Xw0eS33z5FfQJz28z22F8hCQK4Vz22z29z3Bz0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z5FXw0eS33z5Fd8SCfQcUSOQ1ExJ8z2876z29z3Bz20z20z20z20z20z20z20z20z0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z20z20z20z20F8hCQS4Vz2Ee3S44iSOQz20z3Dz20z22F8hCQK4Vz22z3Bz0Dz0Az20z20z20z20z20z20z20z20z20z20z20z20z7Dz2Cz20N066z29z3Bz0Dz0Az20z20z20z20z20z20z20z20z20z20z20FSUQCJz2EpC3ECQBDFFhUJz5FXw0gQteS33z5FmPmNImz2Ejhdh33QeJEhCz289S3z29z3Bz0Dz0Az20z20z20z20z20z20z20z20z7Dz0Dz0Az20z20z20z20z7Dz29z3Bz0Dz0Az7Dz0Dz0A48hgdS33OQmz20z3Dz204QJkEOQhDJz28z2748hgF8hCQK4Vz28z29z27z2Cz20Xz20z2Az20m666z29z3Bz0Dz0A48hgdS33OQNz20z3Dz204QJkEOQhDJz28z2748hgF8hCQK4Vz28z29z27z2Cz20m6z20z2Az20m666z29z3Bz0Dz0Az7Dz0Dz0Az29z28z29z3Bz0Dz0Az3Cz2F4eUEFJz3E", _365call_cssStr:".call365_inviteStyle4{width: 399px;height:181px;background:url(http://www.aiwetalk.com/image/style/invite/bg_03.png) no-repeat left top;margin: auto;}\ .call365_inviteStyle4 .call365_inviteContent{ position:relative; width: 240px;height:120px;padding-top: 45px;padding-left:143px;}\ .call365_inviteStyle4 .call365_invite_logo{width:52px;height:18px; position:absolute; top:45px; right:0; Z-INDEX: 3;}\ .call365_inviteStyle4 .call365_invite_content_panel{position:relative; width: 240px;height:120px;WORD-WRAP: break-word;}\ .call365_inviteStyle4 .call365_invite_text_01{font-family: Arial, Helvetica, sans-serif;font-size: 12px;text-align:left;color: #085771;line-height: 18px;text-decoration: none;}\ .call365_inviteStyle4 .call365_invite_text_02{font-family: Arial, Helvetica, sans-serif;font-size: 10px;text-align:right;color: #fff;text-decoration: none;}\ .call365_inviteStyle4 .call365_invite_openChat{position:absolute; bottom:20px; right:150px; width:78px; height:25px; background:url(http://www.aiwetalk.com/image/style/invite/button_01.png) no-repeat left top;}\ .call365_inviteStyle4 .call365_invite_hide{position:absolute; bottom:20px; right:50px; width:78px; height:25px; background:url(http://www.aiwetalk.com/image/style/invite/button_05.png) no-repeat left top;}._365webcall_list {width:85px;float:right;}\ ._365webcall_list a{display:block;width:63px;height:63px;background:#5BCAFF;border-radius:5px;margin:5px 10px;text-align:center;color:#fff;font-size:12px; cursor:pointer;}\ ._365webcall_list a img{width:30px;margin:7px 5px;}\ ._365webcall_list ._365webcall_scode .divimg{display:none;width:120px;height:120px;float:left;margin-left:-130px;}\ ._365webcall_list ._365webcall_scode .divimg .imgcode{width:118px;height:118px;border:2px solid #dfdfdf;margin:0;}\ ._365webcall_list ._365webcall_scode:hover .divimg{display:block;}\ ._365webcall_list ._365webcall_phone .divphone{display:none;border:1px solid #5BCAFF;width:180px;height:40px; line-height:40px; text-align:center;color:#5BCAFF;font-size:20px; float:left;margin-top:15px; margin-left:-190px;border-radius:3px; background-color:#fff;}\ ._365webcall_list ._365webcall_phone:hover .divphone{display:block;}\ ._365webcall_list ._365webcall_phone .phoneAsk{\ display: none;\ width: 264px;\ height: 70px;\ font-size: 20px;\ float: left;\ margin-left: -274px;\ background-color: #fff;\ box-shadow: 0 0 10px 0 rgb(74 144 226 / 40%);\ border-radius: 2px;\ border: 1px solid #e1e4e6;\ }\ .phoneAsk p {\ margin-top: 5px;\ float: left;\ font-size: 12px;\ letter-spacing: 0.63px;\ color: #43484a;\ }\ .phoneAsk .letter12red {\ color: #f04134;\ line-height: 16px;\ }\ .show{display:block !important;}\ .call {\ padding: 11px 0 0 15px;\ }\ .call .span1 {\ float: left;\ }\ .call .span1 input {\ width: 161px;\ height: 32px;\ padding-left: 8px;\ box-sizing: border-box;\ font-size: 14px;\ outline: none;\ border: 2px solid #1798fc;\ border-radius: 2px 0 0 2px;\ border-color: rgb(23, 152, 252) !important;\ }\ .call .calltome {\ float: left;\ font-size: 14px;\ width: 72px;\ height: 32px;\ box-sizing: border-box;\ background: #1798fc;\ border-radius: 0 2px 2px 0;\ color: #ffffff;\ letter-spacing: -0.18px;\ line-height: 32px;\ cursor: pointer;\ display: inline-block;\ border: none;\ }\ ._365webcall_list a p{ margin:0;padding:0;}\ .ik-msg-count {\ width: 20px;\ height: 20px;\ border-radius: 20px;\ background-color: #e95a40;\ color: #fff;\ position: absolute;\ z-index: 20;\ font-size: 10px;\ line-height: 20px;\ text-align: center;\ display:none;\ }\ .float-msg-count{\ left:unset;\ top:unset;\ margin-left: 5px;\ margin-top: 1px;\ }\ .msgVisitor {\ padding-left: 22px;\ min-height: 34px;\ margin: 0;\ position: relative;\ font-size: 12px;\ display:none;\ }\ .msgVisitor div {\ display: inline-block;\ background: #fff;\ border: 2px solid #5BCAFF;\ min-height: 15px;\ font-size: 14px;\ text-align: left;\ line-height: 18px;\ padding: 6px;\ position: relative;\ border-radius: 6px;\ word-wrap: break-word;\ word-break: break-all;\ }\ .msgVisitor div:before {\ border-color: transparent #5BCAFF;\ width: 6px;\ position: absolute;\ z-index: -1;\ border-style: solid;\ content: \"\";\ margin: auto;\ }\ .msgVisitor div:after {\ border-color: transparent #ffffff;\ width: 6px;\ left: 9px;\ position: absolute;\ z-index: 0;\ border-style: solid;\ content: \"\";\ }\ .msgVisitor div:before{border-width: 12px 0 0 15px;right: -23px;top: 20px;}\ .msgVisitor div:after {border-width: 8px 0 0 11px;right: -16px;left: unset;top: 22px;}\ .text_area {\ margin: auto;\ }\ .text_area h1 {\ margin-top: 8px;\ width: 100%;\ height: 25px;\ background: url(http://www.aiwetalk.com/chat/images/mobile/icon.png) no-repeat left top;\ font-family: \"microsoft yahei\";\ font-size: 12px;\ color: #6A6A6A;\ text-align: left;\ font-weight: normal;\ text-indent: 20px;\ text-decoration: none;\ }\ .text_area .text {\ font-family: \"microsoft yahei\";\ font-size: 14px;\ color: #161616;\ text-align: left;\ font-weight: normal;\ text-decoration: none;\ margin-top: -10px;\ }\ ", _365call_UserStatus:"offline", _365call_Robot:false, _365call_IpAddress:"156.224.224.226", noMonitoring:0, _365call_timeLapse:10, _365call_new_win:2, ActiveCall:0, ActiveWidth:350, ActiveHeight:530, ActiveLocation:3, skin_class:"#E7E7E7", _365call_l_invite_height:181, close_button:0, float_type:0, minIcon:"
", showMinIcon: 0, float_type1:5, float_type2:0, float_type3:5, show_type:2, blw_mode:"", win_url: "", leaveMsgTrans: "", intoFrame: 1, miniLeaveWordRequire: 0, miniLeaveWordLocation: 1, Heartbeat:true, CommandDelay:20000, adContent: "", webAdIPId: 0, urlInfo: 0, prevent: 0, prevent_url: "", Active_lrSide: 80, Active_tbSide: 0, noFloat: 0, InviteParaCustom:0, minIconWidth:34, againTimeLapse:0, writeHtml:0, oBodys_num:0, XYTX_LOGIN_NAME:"", isMobile:false, AdID:0, mintext:"离线留言", isPreview:1, minbgcolor:"#5BCAFF", listGroup:"", Pop_mbed:0, _aBlank: false, graded: 0, autoOpenChatWinTime:5, noShow:3 };var OnlineSupport_365webcall_171291 = new OnlineSupport_365webcall('OnlineSupport_365webcall_171291'); OnlineSupport_365webcall_171291.set_Arg(_365call_arr_171291); OnlineSupport_365webcall_171291.Run(); function receiveMsgFrom365 (event) { try { // console.log('receiveMsgFrom365', event); console.log(event.data._365_cmd); if( typeof (event.data._365_cmd) != 'undefined' ){ if( event.data._365_cmd == 'hide' ) OnlineSupport_365webcall_171291._onSendCommandAvailable('RequestClientEvaluate'); else if( event.data._365_cmd == 'h5ok' ){ OnlineSupport_365webcall_171291.isH5 = true; _365groups_SetCookie('_365webchat_time',(new Date().getTime())); } else if( event.data._365_cmd == 'msg' ){ console.log(_365webcall_DecodeString(event.data._365_msg)); if( !OnlineSupport_365webcall_171291._365call_ChatWin_Available) OnlineSupport_365webcall_171291._365call_imFloat.showMMPrompt(event.data._365_msg, OnlineSupport_365webcall_171291.isPreview, 1 ); _365groups_SetCookie('_365webchat_time',(new Date().getTime())); } else if( event.data._365_cmd == 'fresh' ){ _365groups_SetCookie('_365webchat_time',(new Date().getTime())); } } } catch (e) { } } window.addEventListener("message", receiveMsgFrom365, false); var OnlineSupport_365webcall_171291_loaded=true;