var _____WB$wombat$assign$function_____ = function(name) {return (self._wb_wombat && self._wb_wombat.local_init && self._wb_wombat.local_init(name)) || self[name]; };
if (!self.__WB_pmw) { self.__WB_pmw = function(obj) { this.__WB_source = obj; return this; } }
{
let window = _____WB$wombat$assign$function_____("window");
let self = _____WB$wombat$assign$function_____("self");
let document = _____WB$wombat$assign$function_____("document");
let location = _____WB$wombat$assign$function_____("location");
let top = _____WB$wombat$assign$function_____("top");
let parent = _____WB$wombat$assign$function_____("parent");
let frames = _____WB$wombat$assign$function_____("frames");
let opener = _____WB$wombat$assign$function_____("opener");
/**
* zDialog 2.0
* æÂÂÃ¥ÂÂä¿®æÂ£ï¼Â2009-12-18
**/
//var IMAGESPATH = 'images/'; //å¾çÂÂè·¯å¾ÂéÂ
Âç½®
//var IMAGESPATH = 'https://web.archive.org/web/20160511233410/http://www.5icool.org/'; //å¾çÂÂè·¯å¾ÂéÂ
Âç½®
/*************************ä¸ÂäºÂÃ¥Â
Â¨æÂ¹æ³ÂÃ¥ÂÂå±ÂæÂ§****************************/
var isIE = navigator.userAgent.indexOf('MSIE') != -1;
var isIE6 = navigator.userAgent.indexOf('MSIE 6.0') != -1;
var isIE8 = !!window.XDomainRequest && !!document.documentMode;
if(isIE)
try{ document.execCommand('BackgroundImageCache',false,true); }catch(e){}
var $id = function (id) {
return typeof id == "string" ? document.getElementById(id) : id;
};
//if (!$) var $ = $id;
Array.prototype.remove = function (s, dust) { //å¦ÂæÂÂdust为tureï¼ÂÃ¥ÂÂè¿ÂÃ¥ÂÂ被å é¤çÂÂÃ¥Â
Âç´Â
if (dust) {
var dustArr = [];
for (var i = 0; i 0) break;
parentWin = parentWin.parent;
}
return parentWin;
};
var $bodyDimensions = function (win) {
win = win || window;
var doc = win.document;
var cw = doc.compatMode == "BackCompat" ? doc.body.clientWidth : doc.documentElement.clientWidth;
var ch = doc.compatMode == "BackCompat" ? doc.body.clientHeight : doc.documentElement.clientHeight;
var sl = Math.max(doc.documentElement.scrollLeft, doc.body.scrollLeft);
var st = Math.max(doc.documentElement.scrollTop, doc.body.scrollTop); //èÂÂèÂÂæ»Âå¨çÂÂæÂÂ
åµ
var sw = Math.max(doc.documentElement.scrollWidth, doc.body.scrollWidth);
var sh = Math.max(doc.documentElement.scrollHeight, doc.body.scrollHeight); //èÂÂèÂÂæ»Âå¨çÂÂæÂÂ
åµ
var w = Math.max(sw, cw); //Ã¥ÂÂscrollWidthÃ¥ÂÂclientWidthä¸ÂçÂÂæÂÂ大å¼
var h = Math.max(sh, ch); //IEä¸Âå¨页é¢åÂÂ
容å¾Âå°ÂæÂ¶åÂÂå¨scrollHeight 0 && typeof(arguments[0]) == "string") { //Ã¥Â
¼å®¹æÂ§åÂÂæ³Â
this.ID = arguments[0];
} else if (arguments.length > 0 && typeof(arguments[0]) == "object") {
Dialog.setOptions(this, arguments[0])
}
if(!this.ID)
this.ID = topWin.Dialog._Array.length + "";
};
Dialog._Array = [];
Dialog.bgDiv = null;
Dialog.setOptions = function (obj, optionsObj) {
if (!optionsObj) return;
for (var optionName in optionsObj) {
obj[optionName] = optionsObj[optionName];
}
};
Dialog.attachBehaviors = function () {
if (isIE) {
document.attachEvent("onkeydown", Dialog.onKeyDown);
window.attachEvent('onresize', Dialog.resetPosition);
} else {
document.addEventListener("keydown", Dialog.onKeyDown, false);
window.addEventListener('resize', Dialog.resetPosition, false);
}
};
Dialog.prototype.attachBehaviors = function () {
if (this.Drag && topWin.Drag) topWin.Drag.init(topWin.$id("_Draghandle_" + this.ID), topWin.$id("_DialogDiv_" + this.ID)); //注åÂÂæÂÂæÂ½æÂ¹æ³Â
if (!isIE && this.URL) { //éÂÂieæµÂè§Âå¨ä¸Â卿ÂÂæÂ½æÂ¶ç¨ä¸Â个å±Âé®ä½Âiframeï¼Â以åÂ
ÂÃ¥Â
Âæ Âç§»åÂ
Â¥iframe失åÂȾÂÂæÂ½åÂÂåºÂ
var self = this;
topWin.$id("_DialogDiv_" + this.ID).onDragStart = function () {
topWin.$id("_Covering_" + self.ID).style.display = ""
}
topWin.$id("_DialogDiv_" + this.ID).onDragEnd = function () {
topWin.$id("_Covering_" + self.ID).style.display = "none"
}
}
};
Dialog.prototype.displacePath = function () {
if (this.URL.substr(0, 7) == "http://" || this.URL.substr(0, 1) == "/" || this.URL.substr(0, 11) == "javascript:") {
return this.URL;
} else {
var thisPath = this.URL;
var locationPath = window.location.href;
locationPath = locationPath.substring(0, locationPath.lastIndexOf('/'));
while (thisPath.indexOf('../') >= 0) {
thisPath = thisPath.substring(3);
locationPath = locationPath.substring(0, locationPath.lastIndexOf('/'));
}
return locationPath + '/' + thisPath;
}
};
Dialog.prototype.setPosition = function () {
var bd = $bodyDimensions(topWin);
var thisTop = this.Top,
thisLeft = this.Left,
thisdialogDiv=this.getDialogDiv();
if (typeof this.Top == "string" && this.Top.substring(this.Top.length - 1, this.Top.length) == "%") {
var percentT = this.Top.substring(0, this.Top.length - 1) * 0.01;
thisTop = bd.clientHeight * percentT - thisdialogDiv.scrollHeight * percentT + bd.scrollTop;
}
if (typeof this.Left == "string" && this.Left.substring(this.Left.length - 1, this.Left.length) == "%") {
var percentL = this.Left.substring(0, this.Left.length - 1) * 0.01;
thisLeft = bd.clientWidth * percentL - thisdialogDiv.scrollWidth * percentL + bd.scrollLeft;
}
thisdialogDiv.style.top = Math.round(thisTop) + "px";
thisdialogDiv.style.left = Math.round(thisLeft) + "px";
};
Dialog.setBgDivSize = function () {
var bd = $bodyDimensions(topWin);
if(Dialog.bgDiv){
if(isIE6){
Dialog.bgDiv.style.height = bd.clientHeight + "px";
Dialog.bgDiv.style.top=bd.scrollTop + "px";
Dialog.bgDiv.childNodes[0].style.display = "none";//让divéÂÂ渲æÂÂ,ä¿®æÂ£IE6ä¸Â尺寸bug
Dialog.bgDiv.childNodes[0].style.display = "";
}else{
Dialog.bgDiv.style.height = bd.scrollHeight + "px";
}
}
};
Dialog.resetPosition = function () {
Dialog.setBgDivSize();
for (var i = 0, len = topWin.Dialog._Array.length; i bd.clientWidth) this.Width = Math.round(bd.clientWidth - 26);
if (DialogDivHeight > bd.clientHeight) this.Height = Math.round(bd.clientHeight - 46 - (this.ShowButtonRow ? 40 : 0) - (this.ShowMessageRow ? 50 : 0));
var html = '\
\
\
| \
' + this.Title + '
\
| \
| \
\
\
| \
\
\
\
\
 | \
' + this.MessageTitle + ' \
' + this.Message + '
| \
\
| \
\
\
\
 \
' + (function (obj) {
if (obj.InnerHtml) return obj.InnerHtml;
if (obj.URL) return ' ';
return "";
})(this) + '\
| \
\
\
\
\
\
| \
\
| \
| \
\
\
| \
| \
| \
\
\
\
'
var div = topWin.$id("_DialogDiv_" + this.ID);
if (!div) {
div = topDoc.createElement("div");
div.id = "_DialogDiv_" + this.ID;
topDoc.getElementsByTagName("BODY")[0].appendChild(div);
}
div.style.position = "absolute";
div.style.left = "-9999px";
div.style.top = "-9999px";
div.innerHTML = html;
if (this.InvokeElementId) {
var element = $id(this.InvokeElementId);
element.style.position = "";
element.style.display = "";
if (isIE) {
var fragment = topDoc.createElement("div");
fragment.innerHTML = element.outerHTML;
element.outerHTML = "";
topWin.$id("_Covering_" + this.ID).parentNode.appendChild(fragment)
} else {
topWin.$id("_Covering_" + this.ID).parentNode.appendChild(element)
}
}
this.parentWindow = window;
if (this.URL) {
if (topWin.$id("_DialogFrame_" + this.ID)) {
this.innerFrame = topWin.$id("_DialogFrame_" + this.ID);
};
var self = this;
innerFrameOnload = function () {
try {
self.innerWin = self.innerFrame.contentWindow;
self.innerWin.parentDialog = self;
self.innerDoc = self.innerWin.document;
if (!self.Title && self.innerDoc && self.innerDoc.title) {
if (self.innerDoc.title) topWin.$id("_Title_" + self.ID).innerHTML = self.innerDoc.title;
};
} catch(e) {
if (console && console.log) console.log("å¯è½åÂÂå¨访é®éÂÂå¶ï¼Âä¸Âè½è·åÂÂå°iframeä¸ÂçÂÂ对象ãÂÂ")
}
if (typeof(self.OnLoad)== "function")self.OnLoad();
};
if (this.innerFrame.attachEvent) {
this.innerFrame.attachEvent("onload", innerFrameOnload);
} else {
this.innerFrame.onload = innerFrameOnload;
};
};
topWin.$id("_DialogDiv_" + this.ID).dialogId = this.ID;
topWin.$id("_DialogDiv_" + this.ID).dialogInstance = this;
this.attachBehaviors();
this.okButton = topWin.$id("_ButtonOK_" + this.ID);
this.cancelButton = topWin.$id("_ButtonCancel_" + this.ID);
div=null;
};
Dialog.prototype.setSize = function (w, h) {
if (w && +w > 20) {
this.Width = +w;
topWin.$id("_DialogTable_" + this.ID).width = this.Width + 26;
topWin.$id("_Container_" + this.ID).style.width = this.Width + "px";
}
if (h && +h > 10) {
this.Height = +h;
topWin.$id("_Container_" + this.ID).style.height = this.Height + "px";
}
this.setPosition();
};
Dialog.prototype.show = function () {
this.create();
var bgdiv = Dialog.getBgdiv(),
thisdialogDiv=this.getDialogDiv();
this.zindex = thisdialogDiv.style.zIndex = Dialog.bgDiv.style.zIndex + 1;
if (topWin.Dialog._Array.length > 0) {
this.zindex = thisdialogDiv.style.zIndex = topWin.Dialog._Array[topWin.Dialog._Array.length - 1].zindex + 2;
} else {
var topWinBody = topDoc.getElementsByTagName(topDoc.compatMode == "BackCompat" ? "BODY" : "HTML")[0];
//topWinBody.styleOverflow = topWinBody.style.overflow; Ã¥ÂȎ¤æ»Âå¨æÂ¡
//topWinBody.style.overflow = "hidden"; Ã¥ÂȎ¤æ»Âå¨æÂ¡
bgdiv.style.display = "none";
}
topWin.Dialog._Array.push(this);
if (this.Modal) {
bgdiv.style.zIndex = topWin.Dialog._Array[topWin.Dialog._Array.length - 1].zindex - 1;
Dialog.setBgDivSize();
if(bgdiv.style.display == "none"){
if(this.Animator){
var bgMask=topWin.$id("_DialogBGMask");
bgMask.style.opacity = 0;
bgMask.style.filter = "alpha(opacity=0)";
bgdiv.style.display = "";
fadeEffect(bgMask,0,40,isIE6?20:10);
bgMask=null;
}else{
bgdiv.style.display = "";
}
}
}
this.setPosition();
if (this.CancelEvent) {
this.cancelButton.onclick = this.CancelEvent;
if(this.ShowButtonRow)this.cancelButton.focus();
}
if (this.OKEvent) {
this.okButton.onclick = this.OKEvent;
if(this.ShowButtonRow)this.okButton.focus();
}
if (this.AutoClose && this.AutoClose > 0) this.autoClose();
this.opened = true;
bgdiv=null;
};
Dialog.prototype.close = function () {
var thisdialogDiv=this.getDialogDiv();
if (this == topWin.Dialog._Array[topWin.Dialog._Array.length - 1]) {
var isTopDialog = topWin.Dialog._Array.pop();
} else {
topWin.Dialog._Array.remove(this)
}
if (this.InvokeElementId) {
var innerElement = topWin.$id(this.InvokeElementId);
innerElement.style.display = "none";
if (isIE) {
//ieä¸Âä¸Âè½跨çªÂå£æÂ·è´ÂÃ¥Â
Âç´ ï¼Âåªè½跨çªÂå£æÂ·è´Âhtml代ç Â
var fragment = document.createElement("div");
fragment.innerHTML = innerElement.outerHTML;
innerElement.outerHTML = "";
document.getElementsByTagName("BODY")[0].appendChild(fragment)
} else {
document.getElementsByTagName("BODY")[0].appendChild(innerElement)
}
}
if (topWin.Dialog._Array.length > 0) {
if (this.Modal && isTopDialog) Dialog.bgDiv.style.zIndex = topWin.Dialog._Array[topWin.Dialog._Array.length - 1].zindex - 1;
} else {
Dialog.bgDiv.style.zIndex = "900";
Dialog.bgDiv.style.display = "none";
var topWinBody = topDoc.getElementsByTagName(topDoc.compatMode == "BackCompat" ? "BODY" : "HTML")[0];
//if (topWinBody.styleOverflow != undefined) topWinBody.style.overflow = topWinBody.styleOverflow; Ã¥ÂȎ¤æ»Âå¨æÂ¡
}
if (isIE) {
/*****éÂÂæÂ¾å¼Âç¨ï¼Â以便æµÂè§Âå¨åÂÂæÂ¶åÂÂ
Ã¥ÂÂ**/
thisdialogDiv.dialogInstance=null;
if(this.innerFrame)this.innerFrame.detachEvent("onload", innerFrameOnload);
this.innerFrame=null;
this.parentWindow=null;
this.bgDiv=null;
if (this.CancelEvent){this.cancelButton.onclick = null;};
if (this.OKEvent){this.okButton.onclick = null;};
topWin.$id("_DialogDiv_" + this.ID).onDragStart=null;
topWin.$id("_DialogDiv_" + this.ID).onDragEnd=null;
topWin.$id("_Draghandle_" + this.ID).onmousedown=null;
topWin.$id("_Draghandle_" + this.ID).root=null;
/**endéÂÂæÂ¾å¼Âç¨**/
thisdialogDiv.outerHTML = "";
CollectGarbage();
} else {
var RycDiv = topWin.$id("_RycDiv");
if (!RycDiv) {
RycDiv = topDoc.createElement("div");
RycDiv.id = "_RycDiv";
}
RycDiv.appendChild(thisdialogDiv);
RycDiv.innerHTML = "";
RycDiv=null;
}
thisdialogDiv=null;
this.closed = true;
};
Dialog.prototype.autoClose = function () {
if (this.closed) {
clearTimeout(this._closeTimeoutId);
return;
}
this.AutoClose -= 1;
topWin.$id("_Title_" + this.ID).innerHTML = this.AutoClose + " ç§ÂÃ¥ÂÂèªå¨åÂ
³éÂÂ";
if (this.AutoClose ';
var bgIframeMask = '';
var bgIframe = isIE6?'':'';
bgdiv.innerHTML=bgIframeBox+bgIframeMask+bgIframe+'';
topDoc.getElementsByTagName("BODY")[0].appendChild(bgdiv);
if (isIE6) {
var bgIframeDoc = bgdiv.getElementsByTagName("IFRAME")[0].contentWindow.document;
bgIframeDoc.open();
bgIframeDoc.write("");
bgIframeDoc.close();
bgIframeDoc=null;
}
}
Dialog.bgDiv = bgdiv;
bgdiv=null;
return Dialog.bgDiv;
};
Dialog.prototype.getDialogDiv = function () {
var dialogDiv=topWin.$id("_DialogDiv_" + this.ID)
if(!dialogDiv)alert("è·åÂÂå¼¹åºå±Â页é¢对象åºéÂÂï¼Â");
try{
return dialogDiv;
}finally{
dialogDiv = null;
}
};
Dialog.onKeyDown = function (event) {
if (event.shiftKey && event.keyCode == 9) { //shifté®
if (topWin.Dialog._Array.length > 0) {
stopEvent(event);
return false;
}
}
if (event.keyCode == 27) { //ESCé®
Dialog.close();
}
};
Dialog.close = function (id) {
if (topWin.Dialog._Array.length > 0) {
var diag = topWin.Dialog._Array[topWin.Dialog._Array.length - 1];
diag.cancelButton.onclick.apply(diag.cancelButton, []);
}
};
Dialog.alert = function (msg, func, w, h) {
var w = w || 300,
h = h || 110;
var diag = new Dialog({
Width: w,
Height: h
});
diag.ShowButtonRow = true;
diag.Title = "ç³»ç»ÂæÂÂ示";
diag.CancelEvent = function () {
diag.close();
if (func) func();
};
diag.InnerHtml = '\
 | \
' + msg + ' |
\
';
diag.show();
diag.okButton.parentNode.style.textAlign = "center";
diag.okButton.style.display = "none";
diag.cancelButton.value = "ç¡® å®Â";
diag.cancelButton.focus();
};
Dialog.confirm = function (msg, funcOK, funcCal, w, h) {
var w = w || 300,
h = h || 110;
var diag = new Dialog({
Width: w,
Height: h
});
diag.ShowButtonRow = true;
diag.Title = "ä¿¡æÂ¯ç¡®è®¤";
diag.CancelEvent = function () {
diag.close();
if (funcCal) {
funcCal();
}
};
diag.OKEvent = function () {
diag.close();
if (funcOK) {
funcOK();
}
};
diag.InnerHtml = '\
 | \
' + msg + ' |
\
';
diag.show();
diag.okButton.parentNode.style.textAlign = "center";
diag.okButton.focus();
};
Dialog.open = function (arg) {
var diag = new Dialog(arg);
diag.show();
return diag;
};
if (isIE) {
window.attachEvent("onload", Dialog.attachBehaviors);
} else {
window.addEventListener("load", Dialog.attachBehaviors, false);
}
}
/*
FILE ARCHIVED ON 23:34:10 May 11, 2016 AND RETRIEVED FROM THE
INTERNET ARCHIVE ON 12:42:39 Apr 10, 2025.
JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.
ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
SECTION 108(a)(3)).
*/
/*
playback timings (ms):
captures_list: 0.773
exclusion.robots: 0.04
exclusion.robots.policy: 0.026
esindex: 0.016
cdx.remote: 14.414
LoadShardBlock: 421.713 (3)
PetaboxLoader3.datanode: 105.511 (4)
PetaboxLoader3.resolve: 525.549 (2)
load_resource: 348.762
*/