window.addEvent("load", function () {
	/*
	gotoLinks = $$("body")[0].getElements("a[href^=go.cfm]").combine($$("body")[0].getElements("a[href^=\/go.cfm]"));
	
	//alert(gotoLinks.length);
	if (gotoLinks.length) {
		gotoLinks.each(
			function (a) {
				a.removeProperty("onclick");
				a.setProperty("onclick", "return false;");
				//alert("");
				a.addEvent("click", function (ev) {
					ev.stopPropagation();
					ev.stop();
					var atag = this;
					mask = createMask("link-check", "Checking validity of link");
					mask.addClass("info");
					mask.setOpacity(0);
					mask.injectInside($$("body")[0]);
					$("cover").setOpacity(0.4);
					$("site-mask").getElement("div[class=message]").set("html", "<p align=\"center\"><strong>One moment please.  We are checking that the website you are going to is valid and active.</strong><br /><img src=\"css/images/ajax-loader.gif\" /></p>");
					var fx = new Fx.Morph(mask, {
												duration: 200, 
												wait: true,
												onComplete : function () {
													
														
													}
												}).start({"opacity":1});
					new Request({
						url : this.href + "|ajax",
						onComplete : function (responseText) {
							
							if (responseText.indexOf("200") != -1) {
								var url = atag.href.split("?");
								url = url.slice(1,url.length);
								new Request.HTML({
									url : atag.href, 
									update : $("site-mask").getElement("div[class=message]"),
									onComplete : function () {
										$("close-mask").addEvent("click", function () {
											closeMask();
											});
										}
									}).send()
								//closeMask();
								//alert(atag.href)
								//new Element("a", {"target":"_blank", "href":atag.href, "onclick":"window.open(this.href); return false;"}).set("text","open").injectInside($("site-mask").getElement("div[class=message]")).addEvent("click", function() {
								//	window.open(this.href)
								//	}).fireEvent("click");
								window.open("/go.cfm?" + url + "|push");
								}
							else {
								
								mask.addClass("alert");
								$("site-mask").getElement("div[class=message]").set("html", responseText);
								if ($("close-mask")) {
								$("close-mask").addEvent("click", function () {
									//alert("");
									//closeMask();
									});
								}
								
								
								}	
							
							//alert(responseText);
							},
						onFailure : function () {
							alert("url is not valid");
							}
						}).send();
					
					
					});
				}
			)
		
		}
	*/
	
	});