
/* function which displays an alert popup to let the user know they are leaving the site
	ONLY if the href is an external link (not on this site) */

function goToExternalURL(siteName) {
	alert("You are now leaving the " + siteName + " website.");
}

