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

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

?? monitorstatic.js

?? 網上商城的源碼
?? 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一区二区三区免费野_久草精品视频
奇米一区二区三区| 91在线国产福利| 国产麻豆视频一区| 粉嫩高潮美女一区二区三区| 懂色av一区二区夜夜嗨| 91尤物视频在线观看| 精品视频资源站| xnxx国产精品| 亚洲综合精品自拍| 国产一区二区三区最好精华液| 国产精品一区二区在线观看不卡 | 欧美—级在线免费片| 亚洲视频一二三区| 亚洲成人动漫在线免费观看| 蜜乳av一区二区三区| 韩日av一区二区| 91在线无精精品入口| 制服丝袜亚洲色图| 亚洲欧美福利一区二区| 一区二区三区在线不卡| 亚洲成a人v欧美综合天堂| 免费成人在线影院| 99国产一区二区三精品乱码| 日韩亚洲欧美在线观看| 欧美激情中文不卡| 美国三级日本三级久久99| av一区二区久久| 欧美一卡2卡三卡4卡5免费| 亚洲日本在线天堂| 丰满放荡岳乱妇91ww| 欧美电视剧免费观看| 首页欧美精品中文字幕| 精品一区免费av| 欧美精品久久99久久在免费线| 精品国产乱码久久久久久浪潮| 国产欧美日本一区二区三区| 亚洲精品亚洲人成人网在线播放| 免费高清在线一区| 亚洲精品一区二区三区香蕉| 一个色综合网站| av中文字幕不卡| 国产亚洲综合在线| 国产一区二区三区四区五区入口| 88在线观看91蜜桃国自产| 中文一区二区在线观看| 风流少妇一区二区| 日本一区二区视频在线| 懂色av一区二区三区蜜臀| 国产色一区二区| 国产精品一区二区三区99| 日韩欧美电影在线| 人禽交欧美网站| 欧美裸体bbwbbwbbw| 一区二区三区中文字幕精品精品| 国产成人在线影院| 日韩欧美成人激情| 丝袜a∨在线一区二区三区不卡| 97久久超碰国产精品| 亚洲国产精品黑人久久久 | 不卡的看片网站| 亚洲综合在线五月| 欧美精品在线观看播放| 三级在线观看一区二区| 精品伦理精品一区| 高清在线成人网| 亚洲精品中文字幕在线观看| 欧美亚洲自拍偷拍| 国产盗摄视频一区二区三区| 亚洲一区二区三区自拍| 国产午夜精品一区二区三区视频| 91麻豆swag| 久久99国产精品尤物| 一区二区在线观看视频在线观看| 欧美一区二区三区视频免费播放| 久久99精品国产麻豆婷婷| 亚洲视频 欧洲视频| 欧美一区二区精品久久911| 丁香啪啪综合成人亚洲小说| 亚洲在线视频免费观看| 国产免费成人在线视频| 久久色在线观看| av一区二区三区| 国产成人日日夜夜| 亚洲成av人片一区二区梦乃| 中文字幕欧美区| 日韩欧美不卡在线观看视频| 欧美四级电影在线观看| av福利精品导航| 欧美日韩成人综合天天影院| 99精品国产视频| 国产精品一区二区果冻传媒| 蜜桃av噜噜一区二区三区小说| 亚洲男同性恋视频| 亚洲天堂a在线| 欧美激情一区二区三区全黄| 久久久蜜臀国产一区二区| 精品美女被调教视频大全网站| 欧美系列在线观看| 精品视频在线免费观看| 91香蕉视频黄| 欧美最猛性xxxxx直播| 337p亚洲精品色噜噜狠狠| 欧美日韩在线观看一区二区| 色噜噜夜夜夜综合网| 欧美色图免费看| 7777精品伊人久久久大香线蕉 | 午夜激情综合网| 亚洲午夜免费视频| 亚洲黄色片在线观看| 亚洲综合一区二区精品导航| 国产精品国产自产拍高清av王其| 国产无一区二区| 亚洲精品视频在线观看网站| 午夜影院在线观看欧美| 亚洲6080在线| 国产麻豆视频一区| jlzzjlzz亚洲女人18| 欧美日韩精品一区二区| 日韩欧美成人午夜| 亚洲国产成人在线| 日韩福利视频导航| 国产成人福利片| 欧美亚洲动漫制服丝袜| 久久久综合精品| 一区二区三区四区不卡在线| 美女在线一区二区| 色久综合一二码| 久久久久久97三级| 奇米精品一区二区三区在线观看一| 韩国精品免费视频| 欧美午夜精品一区二区蜜桃 | 日韩免费一区二区| 中文字幕一区二区三区四区不卡 | 97久久精品人人爽人人爽蜜臀| 日韩欧美一区电影| 亚洲一区二区三区在线播放| 国产精品资源站在线| 欧美精品亚洲二区| 亚洲免费观看高清在线观看| 精东粉嫩av免费一区二区三区| 欧美专区日韩专区| 国产精品美女www爽爽爽| 日本欧美肥老太交大片| 91在线精品秘密一区二区| 久久综合丝袜日本网| 无码av免费一区二区三区试看| 国产成人免费在线观看不卡| 欧美日韩二区三区| 国产精品久久久久aaaa| 国产精品一区二区在线观看网站| 欧美一卡二卡三卡| 麻豆91在线观看| 欧美日韩视频专区在线播放| 日韩avvvv在线播放| 在线精品亚洲一区二区不卡| 一区二区三区四区亚洲| 99久久婷婷国产综合精品| 亚洲天堂中文字幕| 在线一区二区视频| 五月天精品一区二区三区| 91精品国产综合久久国产大片| 日韩中文字幕麻豆| 精品99久久久久久| 美国十次了思思久久精品导航| 日韩精品一区二区三区三区免费| 丝袜亚洲精品中文字幕一区| 欧美成人高清电影在线| 国产成人鲁色资源国产91色综| 日本一区二区免费在线观看视频 | 欧美亚洲自拍偷拍| 久久精品99国产国产精| 欧美一区二区三区四区高清| 国产乱码精品一区二区三区av | 亚洲免费在线看| 欧美主播一区二区三区| 国产精品影视网| 国产精品蜜臀在线观看| 欧美精品在线观看播放| 国产精品亚洲人在线观看| 亚洲激情自拍偷拍| 国产亚洲1区2区3区| 欧日韩精品视频| 成人一区二区视频| 久国产精品韩国三级视频| 国产精品天美传媒沈樵| 欧美在线不卡一区| 国产精品影视网| 美腿丝袜亚洲综合| 中文字幕在线一区二区三区| 精品日韩欧美在线| 欧美高清激情brazzers| 99久久精品情趣| 久久精品免费观看| 亚洲成人av在线电影| 一区二区三区不卡视频| 国产精品视频你懂的| 久久综合九色综合97婷婷女人| 在线视频国内一区二区| 国产激情视频一区二区在线观看| 亚洲成人tv网|