function showWarning() {
	var text = 'Sending email to anyone at our firm does not constitute a business relationship. Anything you send to anyone at our firm will not be confidential or privileged unless we have agreed to represent you. Information on this Web site is for general use and is not legal advice.';
	return window.alert(text);
}
function emailWarn() {
	var links = document.getElementsByTagName('a');
	
	for(var i = 0; i < links.length; i++ ) {
		if (links[i].href.match(/mailto/)) {
			addEvent(links[i], 'click', showWarning);
		}
	}
}
addEvent(window, 'load', emailWarn);