// Contains all Javascript to be executed on pageload

window.onload = function() {
	// Informs IE/Mac users to GET A NEW BROWSER
	if (navigator.appName.indexOf('Internet Explorer') > -1 && navigator.appVersion.indexOf('Mac') > -1) {
		alert("You are using an out of date browser and as such, this site may not display correctly.\n\nWe recommend you download a newer browser such as Firefox (www.mozilla.com) and use that.");
	}
		
	// Sets all <a> tags with rel="external|newpage" to open in a new window
	// Target attribute is not valid in Strict doctype
	var links = document.getElementsByTagName('a');
	for (var i = 0 ; i < links.length ; i++) {
		if(links[i].rel && (links[i].rel == "external" || links[i].rel == "newpage")) {
			links[i].target = '_blank';

		}

	}
		
}
