function setup() {
	// OUTBOUND LINKS OPEN IN A NEW WINDOW UNLESS EXPLICITLY TOLD OTHERWISE
	// FORCE SAME WINDOW: rel="self" in anchor
	// FORCE EXTERNAL WINDOW: rel="external" 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('mdhallco.com')===-1 && URL.search('http')!==-1 && anchors[i].rel !== 'self') || anchors[i].rel === 'external') anchors[i].target = "_blank";
	}
}

// THIS FUNCTION CHECKS PASSWORDS ON THE PORTAL REQUEST FORM TO SEE IF THEY MATCH.
function match() {
	if (document.getElementById('password1').value === document.getElementById('password2').value && document.getElementById('password2').value !== '') {
		document.getElementById('stop').style.display = 'none';
		document.getElementById('go').style.display = 'inline';
	} else {
		document.getElementById('stop').style.display = 'inline';
		document.getElementById('go').style.display = 'none';
	}
}

// THIS FUNCTION ACTIVATES EMAIL FORMS
function activate(brillig) {
	document.getElementById('config').name = "config";
	document.getElementById('config').value = brillig;
}

window.onload = setup;