root_path = "/";
$(document).ready(function () {
	$.fn.hover = function (C, B) {
		function A(E) {
			var D = E.relatedTarget;
			while (D && D != this) {
				try {
					D = D.parentNode;
				}
				catch (E) {
					D = null;
				}
			}
			if (D == this) {
				return false;
			}
			return (E.type == "mouseover" ? C : B).apply(this, [E]);
		}
		return this.mouseover(A).mouseout(A);
	};
		
	initRollovers();
	$.ifixpng("/imgs/global/pixel.gif");
	$("img[src$=.png]").not($("img", "#successStories")).not($("img", "#customerService")).ifixpng("/imgs/global/pixel.gif");
	$(".noteRollover").hover(function (A) {
		NoteRollovers.show(A);
	}, NoteRollovers.hide);
	$("a").click(function () {
		this.blur();
	});
	$("button").click(function () {
		this.blur();
	});
	$(".formSubmit").click(function () {
		var A = (this.parentNode.tagName == "FORM") ? this.parentNode : this.parentNode.parentNode;
		A = (A.tagName == "FORM") ? A : A.parentNode;
		if (typeof setUnload != "undefined") {
			setUnload(false);
		}
		$(A).submit();
		return false;
	});
	if ($.browser.msie && $.browser.version < 7) {
		$("a[href$=void(0)]").each(function () {
			$(this).attr("href", "#");
		});
	}
	$("input[type=checkbox]").addClass("checkbox");
	maxCrossSellHeight = 0;
	$(".oneCrossSell > .content").each(function (A) {
		maxCrossSellHeight = Math.max($(this).outerHeight(), maxCrossSellHeight);
	});
	$(".oneCrossSell > .content").each(function (B) {
		var A = maxCrossSellHeight - $(this).height() + 22;
		$(this).height(maxCrossSellHeight);
		$(".lnkCrossell", this).css("bottom", 0 + A);
	});
});
NoteRollovers = {show:function (D) {
	var E = null;
	var C = null;
	if (D.target.tagName != "SPAN" && D.target.tagName != "DIV") {
		C = D.target.parentNode;
	} else {
		if (D.target.tagName == "DIV") {
			E = 3;
		} else {
			E = 2;
		}
		C = D.target;
	}
	var A = C.getAttribute("title");
	$(C).attr({nTitle:A, title:""});
	var B = $("<div class=\"notePopup \" id=\"premiumInfo\"><div class=\"notePopupTopCap\"></div>" + A + "<div class=\"notePopupBottomCap\"></div></div>").appendTo("body");
	$(B).css({top:$(C).offset().top + $(C).height(), left:$(C).offset().left + $(C).width() / E}).show();
}, hide:function (A) {
	$(".notePopup").remove();
	$(".noteRollover[nTitle]").attr({title:$(this).attr("nTitle"), nTitle:""});
}};
function initRollovers() {
	if (!document.getElementById) {
		return;
	}
	A = "";
	var B = new Array();
	var A = "";
	var C = $(".imgover");
	var i = 0;
	C.each(function () {
		i++;
		var F = $(this).attr("src");
		var D = F.substring(F.lastIndexOf("."), F.length);
		var E = F.replace(D, "_on" + D);
		$(this).attr("hsrc", E);
		B[i] = new Image();
		B[i].src = E;
	});
	C.hover(function () {
		A = $(this).attr("src");
		if (A.lastIndexOf("pixel.gif") > 0) {
			this.style.filter = this.style.filter.replace(/\.png/, "_on.png");
		} else {
			$(this).attr("src", $(this).attr("hsrc"));
		}
	}, function () {
		if (A.lastIndexOf("pixel.gif") > 0) {
			this.style.filter = this.style.filter.replace(/\_on.png/, ".png");
		} else {
			if (!A) {
				var E = $(this).attr("src");
				var D = E.substring(E.lastIndexOf("."), E.length);
				A = E.replace("_on" + D, D);
			}
			$(this).attr("src", A);
		}
	});
}
(function (B) {
	B.ifixpng = function (C) {
		B.ifixpng.pixel = C;
	};
	B.ifixpng.getPixel = function () {
		return B.ifixpng.pixel || "images/pixel.gif";
	};
	var A = {ltie7:B.browser.msie && B.browser.version < 7, filter:function (C) {
		return "progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,sizingMethod=crop,src='" + C + "')";
	}};
	B.fn.ifixpng = A.ltie7 ? function () {
		return this.each(function () {
			var C = B(this);
			var E = B("base").attr("href");
			if (C.is("img") || C.is("input")) {
				if (C.attr("src")) {
					if (C.attr("src").match(/.*\.png([?].*)?$/i)) {
						var D = (E && C.attr("src").substring(0, 1) != "/") ? E + C.attr("src") : C.attr("src");
						C.css({filter:A.filter(D), width:C.width(), height:C.height()}).attr({src:B.ifixpng.getPixel()}).not(".noposfix").positionFix();
					}
				}
			} else {
				var F = C.css("backgroundImage");
				if (F.match(/^url\(["']?(.*\.png([?].*)?)["']?\)$/i)) {
					F = RegExp.$1;
					C.css({backgroundImage:"none", filter:A.filter(F)}).children().children().positionFix();
				}
			}
		});
	} : function () {
		return this;
	};
	B.fn.iunfixpng = A.ltie7 ? function () {
		return this.each(function () {
			var C = B(this);
			var D = C.css("filter");
			if (D.match(/src=["']?(.*\.png([?].*)?)["']?/i)) {
				D = RegExp.$1;
				if (C.is("img") || C.is("input")) {
					C.attr({src:D}).css({filter:""});
				} else {
					C.css({filter:"", background:"url(" + D + ")"});
				}
			}
		});
	} : function () {
		return this;
	};
	B.fn.positionFix = function () {
		return this.each(function () {
			var D = B(this);
			var C = D.css("position");
			if (C != "absolute" && C != "relative") {
				D.css({position:"relative"});
			}
		});
	};
})(jQuery);
(function (G) {
	var A = G.fn.height, E = G.fn.width;
	G.fn.extend({height:function () {
		if (!this[0]) {
			D();
		}
		if (this[0] == window) {
			if (G.browser.opera || (G.browser.safari && parseInt(G.browser.version) > 520)) {
				return self.innerHeight - ((G(document).height() > self.innerHeight) ? B() : 0);
			} else {
				if (G.browser.safari) {
					return self.innerHeight;
				} else {
					return G.boxModel && document.documentElement.clientHeight || document.body.clientHeight;
				}
			}
		}
		if (this[0] == document) {
			return Math.max((G.boxModel && document.documentElement.scrollHeight || document.body.scrollHeight), document.body.offsetHeight);
		}
		return A.apply(this, arguments);
	}, width:function () {
		if (!this[0]) {
			D();
		}
		if (this[0] == window) {
			if (G.browser.opera || (G.browser.safari && parseInt(G.browser.version) > 520)) {
				return self.innerWidth - ((G(document).width() > self.innerWidth) ? B() : 0);
			} else {
				if (G.browser.safari) {
					return self.innerWidth;
				} else {
					return G.boxModel && document.documentElement.clientWidth || document.body.clientWidth;
				}
			}
		}
		if (this[0] == document) {
			if (G.browser.mozilla) {
				var J = self.pageXOffset;
				self.scrollTo(99999999, self.pageYOffset);
				var I = self.pageXOffset;
				self.scrollTo(J, self.pageYOffset);
				return document.body.offsetWidth + I;
			} else {
				return Math.max(((G.boxModel && !G.browser.safari) && document.documentElement.scrollWidth || document.body.scrollWidth), document.body.offsetWidth);
			}
		}
		return E.apply(this, arguments);
	}, innerHeight:function () {
		if (!this[0]) {
			D();
		}
		return this[0] == window || this[0] == document ? this.height() : this.is(":visible") ? this[0].offsetHeight - C(this, "borderTopWidth") - C(this, "borderBottomWidth") : this.height() + C(this, "paddingTop") + C(this, "paddingBottom");
	}, innerWidth:function () {
		if (!this[0]) {
			D();
		}
		return this[0] == window || this[0] == document ? this.width() : this.is(":visible") ? this[0].offsetWidth - C(this, "borderLeftWidth") - C(this, "borderRightWidth") : this.width() + C(this, "paddingLeft") + C(this, "paddingRight");
	}, outerHeight:function (I) {
		if (!this[0]) {
			D();
		}
		I = G.extend({margin:false}, I || {});
		return this[0] == window || this[0] == document ? this.height() : this.is(":visible") ? this[0].offsetHeight + (I.margin ? (C(this, "marginTop") + C(this, "marginBottom")) : 0) : this.height() + C(this, "borderTopWidth") + C(this, "borderBottomWidth") + C(this, "paddingTop") + C(this, "paddingBottom") + (I.margin ? (C(this, "marginTop") + C(this, "marginBottom")) : 0);
	}, outerWidth:function (I) {
		if (!this[0]) {
			D();
		}
		I = G.extend({margin:false}, I || {});
		return this[0] == window || this[0] == document ? this.width() : this.is(":visible") ? this[0].offsetWidth + (I.margin ? (C(this, "marginLeft") + C(this, "marginRight")) : 0) : this.width() + C(this, "borderLeftWidth") + C(this, "borderRightWidth") + C(this, "paddingLeft") + C(this, "paddingRight") + (I.margin ? (C(this, "marginLeft") + C(this, "marginRight")) : 0);
	}, scrollLeft:function (I) {
		if (!this[0]) {
			D();
		}
		if (I != undefined) {
			return this.each(function () {
				if (this == window || this == document) {
					window.scrollTo(I, G(window).scrollTop());
				} else {
					this.scrollLeft = I;
				}
			});
		}
		if (this[0] == window || this[0] == document) {
			return self.pageXOffset || G.boxModel && document.documentElement.scrollLeft || document.body.scrollLeft;
		}
		return this[0].scrollLeft;
	}, scrollTop:function (I) {
		if (!this[0]) {
			D();
		}
		if (I != undefined) {
			return this.each(function () {
				if (this == window || this == document) {
					window.scrollTo(G(window).scrollLeft(), I);
				} else {
					this.scrollTop = I;
				}
			});
		}
		if (this[0] == window || this[0] == document) {
			return self.pageYOffset || G.boxModel && document.documentElement.scrollTop || document.body.scrollTop;
		}
		return this[0].scrollTop;
	}, position:function (I) {
		return this.offset({margin:false, scroll:false, relativeTo:this.offsetParent()}, I);
	}, offset:function (J, P) {
		if (!this[0]) {
			D();
		}
		var O = 0, N = 0, X = 0, S = 0, Y = this[0], M = this[0], L, I, W = G.css(Y, "position"), V = G.browser.mozilla, Q = G.browser.msie, U = G.browser.opera, a = G.browser.safari, K = G.browser.safari && parseInt(G.browser.version) > 520, R = false, T = false, J = G.extend({margin:true, border:false, padding:false, scroll:true, lite:false, relativeTo:document.body}, J || {});
		if (J.lite) {
			return this.offsetLite(J, P);
		}
		if (J.relativeTo.jquery) {
			J.relativeTo = J.relativeTo[0];
		}
		if (Y.tagName == "BODY") {
			O = Y.offsetLeft;
			N = Y.offsetTop;
			if (V) {
				O += C(Y, "marginLeft") + (C(Y, "borderLeftWidth") * 2);
				N += C(Y, "marginTop") + (C(Y, "borderTopWidth") * 2);
			} else {
				if (U) {
					O += C(Y, "marginLeft");
					N += C(Y, "marginTop");
				} else {
					if ((Q && jQuery.boxModel)) {
						O += C(Y, "borderLeftWidth");
						N += C(Y, "borderTopWidth");
					} else {
						if (K) {
							O += C(Y, "marginLeft") + C(Y, "borderLeftWidth");
							N += C(Y, "marginTop") + C(Y, "borderTopWidth");
						}
					}
				}
			}
		} else {
			do {
				I = G.css(M, "position");
				O += M.offsetLeft;
				N += M.offsetTop;
				if ((V && !M.tagName.match(/^t[d|h]$/i)) || Q || K) {
					O += C(M, "borderLeftWidth");
					N += C(M, "borderTopWidth");
					if (V && I == "absolute") {
						R = true;
					}
					if (Q && I == "relative") {
						T = true;
					}
				}
				L = M.offsetParent || document.body;
				if (J.scroll || V) {
					do {
						if (J.scroll) {
							X += M.scrollLeft;
							S += M.scrollTop;
						}
						if (U && (G.css(M, "display") || "").match(/table-row|inline/)) {
							X = X - ((M.scrollLeft == M.offsetLeft) ? M.scrollLeft : 0);
							S = S - ((M.scrollTop == M.offsetTop) ? M.scrollTop : 0);
						}
						if (V && M != Y && G.css(M, "overflow") != "visible") {
							O += C(M, "borderLeftWidth");
							N += C(M, "borderTopWidth");
						}
						M = M.parentNode;
					} while (M != L);
				}
				M = L;
				if (M == J.relativeTo && !(M.tagName == "BODY" || M.tagName == "HTML")) {
					if (V && M != Y && G.css(M, "overflow") != "visible") {
						O += C(M, "borderLeftWidth");
						N += C(M, "borderTopWidth");
					}
					if (((a && !K) || U) && I != "static") {
						O -= C(L, "borderLeftWidth");
						N -= C(L, "borderTopWidth");
					}
					break;
				}
				if (M.tagName == "BODY" || M.tagName == "HTML") {
					if (((a && !K) || (Q && G.boxModel)) && W != "absolute" && W != "fixed") {
						O += C(M, "marginLeft");
						N += C(M, "marginTop");
					}
					if (K || (V && !R && W != "fixed") || (Q && W == "static" && !T)) {
						O += C(M, "borderLeftWidth");
						N += C(M, "borderTopWidth");
					}
					break;
				}
			} while (M);
		}
		var Z = H(Y, J, O, N, X, S);
		if (P) {
			G.extend(P, Z);
			return this;
		} else {
			return Z;
		}
	}, offsetLite:function (Q, L) {
		if (!this[0]) {
			D();
		}
		var N = 0, M = 0, K = 0, P = 0, O = this[0], J, Q = G.extend({margin:true, border:false, padding:false, scroll:true, relativeTo:document.body}, Q || {});
		if (Q.relativeTo.jquery) {
			Q.relativeTo = Q.relativeTo[0];
		}
		do {
			N += O.offsetLeft;
			M += O.offsetTop;
			J = O.offsetParent || document.body;
			if (Q.scroll) {
				do {
					K += O.scrollLeft;
					P += O.scrollTop;
					O = O.parentNode;
				} while (O != J);
			}
			O = J;
		} while (O && O.tagName != "BODY" && O.tagName != "HTML" && O != Q.relativeTo);
		var I = H(this[0], Q, N, M, K, P);
		if (L) {
			G.extend(L, I);
			return this;
		} else {
			return I;
		}
	}, offsetParent:function () {
		if (!this[0]) {
			D();
		}
		var I = this[0].offsetParent;
		while (I && (I.tagName != "BODY" && G.css(I, "position") == "static")) {
			I = I.offsetParent;
		}
		return G(I);
	}});
	var D = function () {
		throw "Dimensions: jQuery collection is empty";
	};
	var C = function (I, J) {
		return parseInt(G.css(I.jquery ? I[0] : I, J)) || 0;
	};
	var H = function (M, L, J, N, I, K) {
		if (!L.margin) {
			J -= C(M, "marginLeft");
			N -= C(M, "marginTop");
		}
		if (L.border && ((G.browser.safari && parseInt(G.browser.version) < 520) || G.browser.opera)) {
			J += C(M, "borderLeftWidth");
			N += C(M, "borderTopWidth");
		} else {
			if (!L.border && !((G.browser.safari && parseInt(G.browser.version) < 520) || G.browser.opera)) {
				J -= C(M, "borderLeftWidth");
				N -= C(M, "borderTopWidth");
			}
		}
		if (L.padding) {
			J += C(M, "paddingLeft");
			N += C(M, "paddingTop");
		}
		if (L.scroll && (!G.browser.opera || M.offsetLeft != M.scrollLeft && M.offsetTop != M.scrollLeft)) {
			I -= M.scrollLeft;
			K -= M.scrollTop;
		}
		return L.scroll ? {top:N - K, left:J - I, scrollTop:K, scrollLeft:I} : {top:N, left:J};
	};
	var F = 0;
	var B = function () {
		if (!F) {
			var I = G("<div>").css({width:100, height:100, overflow:"auto", position:"absolute", top:-1000, left:-1000}).appendTo("body");
			F = 100 - I.append("<div>").find("div").css({width:"100%", height:200}).width();
			I.remove();
		}
		return F;
	};
})(jQuery);
function clr(a) {
	if (a.defaultValue == a.value) {
		a.value = "";
	}
}
function ret(a) {
	if (a.value == "") {
		a.value = a.defaultValue;
	}
}
function getCookie(NameOfCookie) {
	if (document.cookie.length > 0) {
		begin = document.cookie.indexOf(NameOfCookie + "=");
		if (begin != -1) {
			begin += NameOfCookie.length + 1;
			end = document.cookie.indexOf(";", begin);
			if (end == -1) {
				end = document.cookie.length;
			}
			return unescape(document.cookie.substring(begin, end));
		}
	}
	return null;
}
/******************************************************************************/
// Function for setting track IDs
function getCookie(NameOfCookie) {
	if (document.cookie.length > 0) {
		begin = document.cookie.indexOf(NameOfCookie + "=");
		if (begin != -1) {
			begin += NameOfCookie.length + 1;
			end = document.cookie.indexOf(";", begin);
			if (end == -1) {
				end = document.cookie.length;
			}
			return unescape(document.cookie.substring(begin, end));
		}
	}
	return null;
}
function setCookie(NameOfCookie, value, expiredays, pathValue) {
	var ExpireDate = new Date();
	ExpireDate.setTime(ExpireDate.getTime() + (expiredays * 24 * 3600 * 1000));
	document.cookie = NameOfCookie + "=" + unescape(value) + ((expiredays == null) ? "" : "; expires=" + ExpireDate.toGMTString()) + ( ";path=/");
}
function delCookie (NameOfCookie) {
	if (getCookie(NameOfCookie)) {
		document.cookie = NameOfCookie + "=" +"; expires=Thu, 01-Jan-70 00:00:01 GMT";
	}
}
function delCookie2 (NameOfCookie) {
	if (getCookie(NameOfCookie)) {
		document.cookie = NameOfCookie + "=; expires=Thu, 01-Jan-70 00:00:01 GMT" + "; path=/";
	}
}

// RNT live chat, formerly chat.js
function chatRNT(skillSet) {
	if (skillSet == "") {
		skillSet = "no referrer";
	}
	window.open("http://support.register.com/cgi-bin/register.cfg/php/enduser/live_thin_launch.php?referrer=" + escape(skillSet), "", "width=472,height=320,resizable=yes,scrollbars=no,toolbar=no,menubar=no");
}


// Banner Ad code, formerly part of bannerLogoAds.jsp
function getURLParam(strParamName) {
	var strReturn = "";
	var strHref = window.location.href;
	if (strHref.indexOf("?") > -1) {
		var strQueryString = strHref.substr(strHref.indexOf("?")).toLowerCase();
		var aQueryString = strQueryString.split("&");
		for (var iParam = 0; iParam < aQueryString.length; iParam++) {
			if (aQueryString[iParam].indexOf(strParamName + "=") > -1) {
				var aParam = aQueryString[iParam].split("=");
				strReturn = aParam[1];
				break;
			}
		}
	}
	return strReturn;
}
function OAS_RICH() {
}
_version = 11;
//configuration
if (document.location.toString().indexOf("https://") != -1) {
	OAS_url = "https://oasc08.247realmedia.com/RealMedia/ads/";
} else {
	OAS_url = "http://oascentral.register.com/RealMedia/ads/";
}
OAS_sitepage = "register.com";

if (window.location.pathname.indexOf("/product/webhosting") != -1) {
	OAS_sitepage += "/viewproductdetail/hosting";
} else if (window.location.pathname.indexOf("/product/webpromotionmarketing") != -1) { 
	OAS_sitepage += "/viewproductdetail/marketing"; 
} else if (window.location.pathname.indexOf("/product/security-sslcertificates") != -1) {
	OAS_sitepage += "/viewproductdetail/security";
} else if (window.location.pathname.indexOf("/product/websitedesign") != -1) {
	OAS_sitepage += "/viewproductdetail/build";
} else if (window.location.pathname.indexOf("/product/businessemailsolutions") != -1) {
	OAS_sitepage += "/viewproductdetail/email";
} else if (window.location.pathname.indexOf("/whois") != -1) {
	OAS_sitepage += "/domain/whois";
} else if (window.location.pathname.indexOf("/product/websitedesign/doitmyself-ecommerce") != -1) {
	OAS_sitepage += "/viewproductdetail/ecom";
} else if (window.location.pathname.indexOf("/product/websitedesign/builditforme-ecommerce") != -1) {
	OAS_sitepage += "/viewproductdetail/ecom";
} else if (window.location.pathname.indexOf("/product/websitedesign/builditforme-custom-ecommerce") != -1) {
	OAS_sitepage += "/viewproductdetail/ecom";
} else if (window.location.pathname.indexOf("/product/ecommercesolutions") != -1) {
	OAS_sitepage += "/viewproductdetail/ecom";
} else if (window.location.pathname.indexOf("/whois") != -1) {
	OAS_sitepage += "/domain/whois";
} else if (window.location.pathname.indexOf("/product/domain") != -1) {
	OAS_sitepage += "/viewproductdetail/getadomain";
} else if (window.location.pathname.indexOf("/register-domain-names") != -1) {
	OAS_sitepage += "/viewproductdetail/getadomain";
} else if (window.location.pathname.indexOf("/transfer-domain-names") != -1) {
	OAS_sitepage += "/viewproductdetail/getadomain";
} else if (window.location.pathname.indexOf("/website-forwarding") != -1) {
	OAS_sitepage += "/viewproductdetail/getadomain";
} else if (window.location.pathname.indexOf("/masking") != -1) {
	OAS_sitepage += "/viewproductdetail/getadomain";
} else if (window.location.pathname.indexOf("/bulk-domain-registration") != -1) {
	OAS_sitepage += "/viewproductdetail/getadomain";
} else if (window.location.pathname.indexOf("/product/hosting/login") != -1) {
	OAS_sitepage += "/LoginAccountManager";
} else if (window.location.pathname.indexOf("/product/email/login") != -1) {
	OAS_sitepage += "/LoginAccountManager";
} else if (window.location.pathname.indexOf("/myaccount/productdisplay") != -1) {
			if (loggedin)
				{ OAS_sitepage += "/InsideAccountManager"; } 
				else 
				{ OAS_sitepage += "/LoginAccountManager"; }
} else if (window.location.pathname.indexOf("partneroffers") != -1) {
	OAS_sitepage += window.location.pathname;
} else {
	OAS_sitepage += "/index";
}
OAS_listpos = "Position1,x50,x51,x52,x53,x54,x55,x56,x57,x58,x59,x60,Bottom";

//override above and use additional ad spots if whois or partneroffers
if (window.location.pathname.indexOf("/whois.rcmx") != -1) {
	OAS_sitepage = "register.com/domain/whois";
	OAS_listpos = "Position1,Position2,Position3,x01,x02,x03,x04,x05,x06,x07,x08,x09,x10,x11,x12,x13,x14,x15,x50,x51,x52,x53,x54,x55,x56,x57,x58,x59,x60,Bottom";
} else if (window.location.pathname.indexOf("partneroffers") != -1) {
	OAS_sitepage = "register.com"+window.location.pathname;
	OAS_listpos = "Position1,Position3,x01,x02,x03,x04,x05,x06,x07,x08,x09,x10,x11,x21,x22,x23,x24,x25,x26,x27,x28,x29,x30,x50,x51,x52,x53,x54,x55,x56,x57,x58,x59,x60,x90,Bottom,Bottom1";
} else if (window.location.pathname.indexOf("/myaccount/productdisplay") != -1) {
	OAS_listpos = "Position1,Position2,Position3,x01,x02,x03,x04,x05,x06,x07,x08,x09,x10,x11,x12,x13,x14,x15,x50,x51,x52,x53,x54,x55,x56,x57,x58,x59,x60,Bottom";
} else if (window.location.pathname.indexOf("/product/hosting/login_hosting") != -1) {
	OAS_listpos = "Position1,Position2,Position3,x01,x02,x03,x04,x05,x06,x07,x08,x09,x10,x11,x12,x13,x14,x15,x50,x51,x52,x53,x54,x55,x56,x57,x58,x59,x60,Bottom";
} else if (window.location.pathname.indexOf("/product/email/login_webmail") != -1) {
	OAS_listpos = "Position1,Position2,Position3,x01,x02,x03,x04,x05,x06,x07,x08,x09,x10,x11,x12,x13,x14,x15,x50,x51,x52,x53,x54,x55,x56,x57,x58,x59,x60,Bottom";
} else if (window.location.pathname.indexOf("/product/email/login_mue") != -1) {
	OAS_listpos = "Position1,Position2,Position3,x01,x02,x03,x04,x05,x06,x07,x08,x09,x10,x11,x12,x13,x14,x15,x50,x51,x52,x53,x54,x55,x56,x57,x58,x59,x60,Bottom";
} else if (window.location.pathname.indexOf("/product/email/login_hostedexchange") != -1) {
	OAS_listpos = "Position1,Position2,Position3,x01,x02,x03,x04,x05,x06,x07,x08,x09,x10,x11,x12,x13,x14,x15,x50,x51,x52,x53,x54,x55,x56,x57,x58,x59,x60,Bottom";
}
OAS_query = "";
OAS_target = "_top";
//end of configuration
OAS_version = 10;
OAS_rn = "001234567890";
OAS_rns = "1234567890";
OAS_rn = new String(Math.random());
OAS_rns = OAS_rn.substring(2, 11);
function OAS_NORMAL(pos) {
	document.write("<a href=\"" + OAS_url + "click_nx.ads/" + OAS_sitepage + "/1" + OAS_rns + "@" + OAS_listpos + "!" + pos + "?" + OAS_query + "\" target=" + OAS_target + ">");
	document.write("<img src=\"" + OAS_url + "adstream_nx.ads/" + OAS_sitepage + "/1" + OAS_rns + "@" + OAS_listpos + "!" + pos + "?" + OAS_query + "\" border=0></a>");
}
function phoneSwap() {
	$('html').addClass('usPhoneDisplay');
	$('html').addClass('intlPhoneDisplay');
    
	$(document).ready(function() {
		$(".phoneNumberUSReplace").html(usPhone);
		$(".phoneNumberIntlReplace").html(intlPhone);
		$('html').removeClass('usPhoneDisplay');
		$('html').removeClass('intlPhoneDisplay');
	});  

}