//
// BEGIN function(s) for cross-browser event handling
// This negates the need to put "onLoad", "onMouseover", "onClick", and other such things
// in the HTML.
// Source: Scott Andrew

function addEvent(elm, evType, fn, useCapture) {
	if (elm.addEventListener) { 
		elm.addEventListener(evType, fn, useCapture); 
		return true; 
	} else if (elm.attachEvent) { 
		var r = elm.attachEvent('on' + evType, fn); 
		return r; 
	} else {
		elm['on' + evType] = fn;
	}
}

// END function(s) for cross-browser event handling for IE5+, NS6 and Mozilla
//

//
// BEGIN function(s) for footer redirect select menu

function FooterRedirect() {
	var RedirectSelect = document.getElementById('RedirectSelect');
	RedirectSelect.onchange = function() {
		window.location.href = RedirectSelect.options[RedirectSelect.selectedIndex].value;
	}
}

addEvent(window,'load',FooterRedirect,false);

// END function(s) for footer redirect select menu
//