亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? monitorstatic.js

?? JSP實現網絡辦公OA
?? JS
?? 第 1 頁 / 共 5 頁
字號:
		obj.top = pageYOffset + y;
	}
	else if (Sys.DOM)
	{
		obj.left = pageXOffset + x + 'px';
		obj.top = pageYOffset + y + 'px';
	}
};
function InviteWindow_show()
{
	if(getCookie("hasVisited")!=null&&getCookie("hasVisited")=="true"&&this.operatorInvite&&preferences["invite_auto"]==2){
		return;	
	}
	this.showInvite = true;
	if (Sys.IE)
	{
 		document.all.InviteWindow.style.visibility = 'visible';
 	}
 	else if (Sys.NS)
 	{
		document.layers.InviteWindow.visibility = 'visible';
	}
 	else if (Sys.DOM)
 	{
		Sys.getObj('InviteWindow').style.visibility = 'visible';
 	}

};
function InviteWindow_hide()
{
	this.showInvite = false;
	if (Sys.IE)
	{
 		document.all.InviteWindow.style.visibility = 'hidden';
 	}
 	else if (Sys.NS)
 	{
 		document.layers.InviteWindow.visibility = 'hidden';
	}
 	else if (Sys.DOM)
 	{
		Sys.getObj('InviteWindow').style.visibility = 'hidden';
 	}

};
function InviteWindow_accept()
{

	this.hide();
	if(this.isauto){
		this.parentObject.onIconClick();
	}else{
		this.parentObject.onInviteWindowAccept();
	}
	
};
function InviteWindow_refuse()
{

	this.hide();
	if(!this.isauto)
		this.parentObject.onInviteWindowRefuse();
};

function VisitServer(inLogger, inPreferences, inVisitClient, inSendDriver)
{
	this.logger = inLogger;
	this.preferences = inPreferences;
	this.visitClient = inVisitClient;
	this.sendDriver = inSendDriver;
	this.visitServerTimer = null;

	this.refuseInvite = VisitServer_refuseInvite;
	this.acceptInvite = VisitServer_acceptInvite;
	this.initiatedChat = VisitServer_initiatedChat;

	this.getAcceptInviteUrl = VisitServer_getAcceptInviteUrl;
	this.getInitiatedChatUrl = VisitServer_getInitiatedChatUrl;
	this.getCallUrl = VisitServer_getCallUrl;

	this.start = VisitServer_start;
	this.stop = VisitServer_stop;
}
function VisitServer_getCallUrl()
{
	var openUrl = this.preferences["protocol"] + "://" + this.preferences["baseUrl"] + this.preferences["baseWebapp"]+ this.preferences["baseChatHtmlDir"] +"/chatbox.jsp?"+getGid()+getParam()+getTrustfulVisitorInfo();
		openUrl += "&companyID=" + this.preferences["companyID"]+"&";
	if(this.preferences["skin"] != null)
		openUrl += "&skin=" + this.preferences["skin"];
	if(this.preferences["chatBanner"] != null)
		openUrl += "&chatBanner=" + this.preferences["chatBanner"];
	if(this.preferences["chatBannerLink"] != null)
		openUrl += "&chatBannerLink=" + this.preferences["chatBannerLink"];
	if(typeof live800_configContent != "undefined" && live800_configContent != null)
		openUrl += "&configID=" + live800_configID;
	return openUrl+getEnterUrl();
}
function VisitServer_getInitiatedChatUrl()
{
	var openUrl = this.preferences["protocol"] + "://" + this.preferences["baseUrl"] + this.preferences["baseWebapp"] + this.preferences["baseChatHtmlDir"] +"/chatbox.jsp?"+getGid()+"&companyID=" + this.preferences["companyID"] +"&chatType=2";
	if(typeof this.preferences["configID"] != "undefined" && this.preferences["configID"] != null && this.preferences["configID"] != "")
	{
		openUrl += "&configID=" + this.preferences["configID"];
	}
	if(this.preferences["skin"] != null)
		openUrl += "&skin=" + this.preferences["skin"];
	if(this.preferences["chatBanner"] != null)
		openUrl += "&chatBanner=" + this.preferences["chatBanner"];
	if(this.preferences["chatBannerLink"] != null)
		openUrl += "&chatBannerLink=" + this.preferences["chatBannerLink"];
	if(typeof live800_configContent != "undefined" && live800_configContent != null)
		openUrl += "&configID=" + live800_configID;
	return openUrl+getEnterUrl()+"&"+getTrustfulVisitorInfo();
};
function VisitServer_getAcceptInviteUrl()
{
	var openUrl = this.preferences["protocol"] + "://" + this.preferences["baseUrl"] + live800_baseWebApp+"/SurferServer?&cmd=102";
	openUrl += "&accept=1";
	openUrl += "&visitorIDInSession=" + this.preferences["visitorIDInSession"];
	openUrl += "&companyID=" + this.preferences["companyID"];
	if(typeof this.preferences["configID"] != "undefined" && this.preferences["configID"] != null && this.preferences["configID"] !="")
		openUrl += "&configID=" + live800_configID;
	if(typeof live800_configContent != "undefined" && live800_configContent != null)
		openUrl += "&configID=" + live800_configID;
	return openUrl+"&"+getGid()+getParam()+getTrustfulVisitorInfo();
};
function VisitServer_start()
{
	//this.visitServerTimer = setTimeout('globalVisitServer.getConfigInServer()',100);
};
function VisitServer_stop()
{
	clearTimeout(this.visitServerTimer);
};
function VisitServer_refuseInvite()
{
	var params = new Array();
	params[0] = "companyID=" + this.preferences["companyID"];
	params[1] = "accept=0";
	var rpcMethod = new RpcMethod("SurferServer", "102", params, 0, null, null);
	this.sendDriver.execute(rpcMethod);
};
function VisitServer_acceptInvite()
{
	var params = new Array();
	params[0] = "companyID=" + this.preferences["companyID"];
	params[1] = "accept=1";
	var rpcMethod = new RpcMethod("SurferServer", "102", params, 0, null, null);
	this.sendDriver.execute(rpcMethod);
};
function VisitServer_initiatedChat()
{
	var params = new Array();
	params[0] = "companyID=" + this.preferences["companyID"];
	var rpcMethod = new RpcMethod("SurferServer", "109", params, 0, null, null);
	this.sendDriver.execute(rpcMethod);
}
function VisitServer_call()
{

};

function VisitHandle(inLogger, inPreferences, inVisitClient, inWindow, inInviteWindow, inIcon)
{
	this.logger = inLogger;
	this.preferences = inPreferences;
	this.visitClient = inVisitClient;

	this.visitWindow = inWindow;
	this.visitDocument = inWindow.document;
	this.inviteWindow = inInviteWindow;
	this.icon = inIcon;
	this.inviteWindow.parentObject = this;
	if(this.icon != null)
		this.icon.parentObject = this;
	this.chatWindow = null;

	this.showInvite = VisitHandle_showInvite;
	this.hideInvite = VisitHandle_hideInvite;
	this.openInitiatedChat = VisitHandle_openInitiatedChat;
	this.reloadIcon = VisitHandle_reloadIcon;

	this.onInviteWindowAccept = VisitHandle_onInviteWindowAccept;
	this.onInviteWindowRefuse = VisitHandle_onInviteWindowRefuse;
	this.onIconClick = VisitHandle_onIconClick;

   	this.initListener = VisitHandle_initListener;
	this.initListener();

}
function VisitHandle_onIconClick()
{
	var openUrl = this.visitClient.getCallUrl();
	var winAttr = 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=541,height=401';
		if (typeof(this.chatWindow) == "undefined"||this.chatWindow==null)
		{
			this.chatWindow = window.open(openUrl, 'chatbox'+ this.preferences["companyID"], winAttr);
		}
		try
		{
			this.chatWindow.focus();
			this.chatWindow.opener=window;
		}
		catch(e)
		{
			this.chatWindow = window.open(openUrl, 'chatbox'+ this.preferences["companyID"], winAttr);
		}
    return false;

}
function VisitHandle_onInviteWindowAccept()
{
	var openUrl = this.visitClient.getAcceptInviteUrl();
	var winAttr = 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=541,height=401';
	this.chatWindow = window.open(openUrl, 'chatbox'+ this.preferences["companyID"], winAttr);
	try
	{
		this.chatWindow.focus();
		this.chatWindow.opener=window;
	}
	catch(e)
	{
		this.chatWindow = window.open(openUrl, 'chatbox'+ this.preferences["companyID"], winAttr);
	}
    return false;
};
function VisitHandle_onInviteWindowRefuse()
{
	this.visitClient.refuseInvite();
};
function VisitHandle_showInvite()
{
	this.inviteWindow.operatorInvite=false;
	this.visitWindow.focus();
	this.inviteWindow.show();
	this.inviteWindow.isauto = false;
	this.inviteWindow.operatorInvite=true;
};
function VisitHandle_hideInvite()
{
	this.inviteWindow.hide();
};
function VisitHandle_openInitiatedChat()
{
	//this.visitClient.initiatedChat();
	var openUrl = this.visitClient.getInitiatedChatUrl();
	var winAttr = 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=541,height=401';
	
	try
	{
		this.chatWindow = window.open(openUrl, 'chatbox'+ this.preferences["companyID"], winAttr);
		this.chatWindow.focus();
		this.chatWindow.opener=window;
	}
	catch(e)
	{
		/*for must initiated chat*/
		openUrl += '&blocked=1';
		window.location = openUrl;
	}
    return false;
};
function VisitHandle_reloadIcon()
{
	var live800iconList = document.getElementsByName("live800icon");
	if(live800iconList == null) return;
	for(i=0; i<live800iconList.length; i++)
	{
		temp = live800iconList[i].src ;
		temp += "&rpcImageId=" + (new Date()).getTime();
		live800iconList[i].src = temp;
	}
};
function VisitHandle_initListener()
{
	this.visitClient.addMessageListener(this);
};
if(live800_companyID == null || live800_companyID == ""){alert("miss companyID");}
else
{
	preferences = new Array();
	preferences["companyID"] = live800_companyID;
	preferences["float"] = (typeof live800_float != "undefined" ? live800_float : "1");
	preferences["iconIndex"] = (typeof live800_iconIndex !="undefined" ? live800_iconIndex : "0");
	preferences["online"] =  (typeof live800_online !="undefined" ? live800_online : null);
	preferences["offline"] =  (typeof live800_offline !="undefined" ? live800_offline : null);
	preferences["floatToRight"] = (typeof live800_floatToRight !="undefined" ? live800_floatToRight : "1");
	preferences["skin"] = (typeof live800_skin !="undefined" ? live800_skin : "0");
	preferences["chatBanner"] = (typeof live800_chatBanner !="undefined" ? live800_chatBanner : null);
	preferences["chatBannerLink"] = (typeof live800_chatBannerLink !="undefined" ? live800_chatBannerLink : null);
	preferences["status"] = (typeof live800_status !="undefined" ? live800_status : null);
	if(typeof live800_configContent != "undefined")
	{
	params = Sys.urlToParams(live800_configContent);
	preferences["configID"] = live800_configID;
	preferences["invite_auto"] = (typeof params["live800_invite_auto"] !="undefined" ? params["live800_invite_auto"] : 1);
	preferences["invite_delay"] = (typeof params["live800_invite_delay"] !="undefined" ? params["live800_invite_delay"] : 10);
	preferences["invite_title"] = (typeof params["live800_invite_title"] !="undefined" ? params["live800_invite_title"] : unescape("Live800%u7F51%u7AD9%u5728%u7EBF%u5BA2%u670D%u7CFB%u7EDF"));
	preferences["invite_style"] = (typeof params["live800_invite_style"] !="undefined" ? params["live800_invite_style"] : null);
	preferences["invite_top"] = (typeof params["live800_invite_top"] !="undefined" ? params["live800_invite_top"] : 0);
	}
	else
	{
		preferences["configID"] = 1;
		preferences["invite_auto"] = 1;
		preferences["invite_delay"] = 10;
		preferences["invite_style"]=null;
		preferences["invite_top"]=0;
		preferences["invite_title"] = unescape("Live800%u7F51%u7AD9%u5728%u7EBF%u5BA2%u670D%u7CFB%u7EDF");
	}

	preferences["protocol"] = "http";
	preferences["baseUrl"] = live800_baseUrl;
	preferences["baseHtmlUrl"] =live800_baseHtmlUrl;
	preferences["baseWebapp"] = live800_baseWebApp;
	preferences["baseChatHtmlDir"] = live800_baseChatHtmlDir;
	preferences["visitorIDInSession"] = preferences["companyID"] + "chater";

	var globalLogger = new Logger();
	var globalSendDriver = new SendDriver(globalLogger, preferences);
	var globalReceiveDriver = new ReceiveDriver(globalLogger, preferences);
	var globalVisitClient = new VisitClient(globalLogger, preferences, globalReceiveDriver, globalSendDriver);
	var globalVisitServer = globalVisitClient.visitServer;

	var globalIcon = null;
	if(typeof live800_configContent == "undefined")
	{

		if(preferences["float"]=="1")
		{
			globalIcon = globalFloatIcon = new FloatIcon(globalLogger, preferences, globalVisitClient, window);
		}
		else
		{
			globalIcon = globalStaticIcon = new StaticIcon(globalLogger, preferences, globalVisitClient, window);
		}
		globalIcon.start();
	}
	/*var live800_configContent to detect is a a version 3 live800 js*/

	var globalInviteWindow = new InviteWindow(globalLogger, preferences, globalVisitClient, window);
	var globalVisitHandle = new VisitHandle(globalLogger, preferences, globalVisitClient, window, globalInviteWindow, globalIcon);
	globalVisitClient.start();
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美久久一区二区| 在线视频一区二区三| 石原莉奈在线亚洲二区| 亚洲18色成人| 日日摸夜夜添夜夜添亚洲女人| 亚洲精品免费看| 亚洲sss视频在线视频| 天天影视涩香欲综合网| 亚洲18影院在线观看| 奇米影视一区二区三区| 精品一区在线看| 风间由美性色一区二区三区| 国产91精品一区二区| 91视频免费播放| 欧美性大战xxxxx久久久| 91精品国产综合久久婷婷香蕉| 日韩欧美国产综合在线一区二区三区 | 精品一区免费av| 国产成人综合网| 色综合久久天天| 欧美日韩电影在线播放| 日韩欧美高清一区| 国产精品久久久久久久午夜片| 亚洲狼人国产精品| 九九久久精品视频 | 国产精品人妖ts系列视频| 亚洲精品一二三区| 日本美女一区二区| 成人黄色777网| 欧美精品一区二区三区久久久| 国产精品久久久一区麻豆最新章节| 中文字幕日本乱码精品影院| 日韩精品午夜视频| 成人午夜激情片| 91精品国产欧美日韩| 国产欧美日韩在线| 天天亚洲美女在线视频| 成人久久视频在线观看| 欧美日韩国产123区| 日本一区二区视频在线| 天天综合天天综合色| 成人中文字幕合集| 日韩欧美卡一卡二| 亚洲主播在线播放| 成人黄色免费短视频| 日韩欧美高清dvd碟片| 一区二区三区国产| 国产成人精品亚洲午夜麻豆| 制服视频三区第一页精品| 国产精品久久久久久久久免费桃花| 日本欧美肥老太交大片| 欧美午夜精品免费| 中文字幕一区二区三区不卡| 狠狠色狠狠色综合| 777a∨成人精品桃花网| 亚洲午夜成aⅴ人片| av福利精品导航| 国产欧美va欧美不卡在线| 日韩高清中文字幕一区| 欧美偷拍一区二区| 18欧美亚洲精品| 粉嫩久久99精品久久久久久夜 | 国产欧美精品国产国产专区 | 91小宝寻花一区二区三区| 日本一区二区三区电影| 蜜臀av性久久久久蜜臀aⅴ| 欧美日本一区二区三区四区| 亚洲美女免费视频| 色婷婷综合久色| 一片黄亚洲嫩模| 色女孩综合影院| 亚洲欧美中日韩| 99视频在线精品| 最近日韩中文字幕| 91在线国产福利| 亚洲三级在线播放| 日本大香伊一区二区三区| 亚洲人成在线观看一区二区| 91丨九色porny丨蝌蚪| 亚洲精品国久久99热| 91高清视频在线| 天堂在线一区二区| 欧美大度的电影原声| 九色综合国产一区二区三区| 欧美精品一区二区三区视频| 国产成人综合在线观看| 中文字幕欧美一区| 在线视频一区二区三| 日本人妖一区二区| 欧美精品一区二区三区四区| 粉嫩嫩av羞羞动漫久久久| 亚洲三级电影网站| 在线成人午夜影院| 国产自产视频一区二区三区| 国产精品卡一卡二卡三| 欧美日韩精品综合在线| 日本高清不卡一区| 日日夜夜精品视频免费| 久久久久久久久岛国免费| 99久久久精品| 天天色图综合网| 国产午夜精品理论片a级大结局 | 亚洲自拍偷拍九九九| 精品污污网站免费看| 老鸭窝一区二区久久精品| 国产亚洲成年网址在线观看| 色综合久久中文字幕综合网| 天天综合日日夜夜精品| 中文av一区二区| 欧美日韩美女一区二区| 成人午夜短视频| 蜜臀a∨国产成人精品| 成人欧美一区二区三区黑人麻豆| 91精品国产综合久久蜜臀| 99热99精品| 国产精品综合二区| 日韩在线一二三区| 一区在线观看免费| 26uuu欧美日本| 欧美日韩国产在线播放网站| 波多野结衣亚洲| 韩国欧美国产一区| 肉丝袜脚交视频一区二区| ㊣最新国产の精品bt伙计久久| 日韩精品中文字幕一区二区三区 | 欧美精品久久一区二区三区| 成人一区二区三区在线观看| 天堂va蜜桃一区二区三区| 国产精品久线观看视频| 日韩免费视频一区| 555夜色666亚洲国产免| 色香蕉成人二区免费| 成人一区二区视频| 国产精品99久久久久久宅男| 青青草一区二区三区| 午夜精品爽啪视频| 亚洲永久精品国产| 亚洲女与黑人做爰| 亚洲欧美视频在线观看视频| 国产欧美精品区一区二区三区 | 综合激情成人伊人| 欧美国产精品久久| 国产欧美一区二区精品忘忧草 | 久久99久久久久| 日韩成人伦理电影在线观看| 亚洲一区二区在线免费观看视频| 亚洲欧洲韩国日本视频| 亚洲欧洲日韩一区二区三区| 国产精品久久久久久久久免费丝袜| 久久精品一二三| 欧美韩国日本不卡| 欧美国产亚洲另类动漫| 中文一区一区三区高中清不卡| 久久久久久电影| 国产蜜臀av在线一区二区三区| 2020日本不卡一区二区视频| 久久久91精品国产一区二区三区| 国产人成一区二区三区影院| 欧美精彩视频一区二区三区| 中文字幕在线不卡| 亚洲精品国产精品乱码不99| 亚洲在线视频网站| 免费在线视频一区| 国产福利91精品一区二区三区| 国产**成人网毛片九色| 91丝袜美女网| 亚洲天堂福利av| 一区二区三区精品在线| 首页亚洲欧美制服丝腿| 国产一区欧美二区| av激情成人网| 制服丝袜av成人在线看| 久久日韩粉嫩一区二区三区 | 欧洲亚洲国产日韩| 在线播放日韩导航| 国产午夜亚洲精品午夜鲁丝片| 亚洲欧美自拍偷拍色图| 天堂在线一区二区| 国产成人高清在线| 欧美日本视频在线| 久久综合九色综合欧美98| 成人欧美一区二区三区在线播放| 亚洲国产一区二区三区| 国产美女精品人人做人人爽| 91色综合久久久久婷婷| 91精品国产福利| 中文字幕欧美一| 狠狠色伊人亚洲综合成人| 色综合一个色综合| 精品国产乱码久久久久久浪潮| 亚洲欧美日韩国产综合在线| 久久99精品久久久久婷婷| 91美女在线视频| 欧美成人伊人久久综合网| 一区二区三区 在线观看视频 | 国产精品美女久久久久久久久| 亚洲一二三专区| av电影在线观看一区| 精品国产免费视频| 天堂久久久久va久久久久|