// ALL SCRIPTS THAT RUN ON PAGE LOAD
function setup() {
	// FORCES OUTBOUND LINKS TO OPEN IN A NEW WINDOW UNLESS EXPLICITLY TOLD OTHERWISE (rel="self" in anchor)
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var URL = anchors[i].href;
		if (URL.search('dickshorseradishrace')===-1 && URL.search('http')!==-1 && anchors[i].rel !== 'self') anchors[i].target = "_blank";
	}
}

// This function activates contact scripts
function activate(brillig) {
	document.getElementById('config').name = "config";
	document.getElementById('config').value = brillig;
}

window.onload = setup;
