// JavaScript Document
function disclaimerMessage(email){
	var agree=confirm("Please be aware that the transmission of an e-mail inquiry does not create an attorney-client relationship and such an initial message will not be protected by the attorney-client privilege.  White Arnold & Dowd cannot serve as your counsel in any matter unless you and our firm expressly agree in writing that we serve as your attorney.\n\nPlease click the 'OK' button if you understand and accept the terms of the foregoing statement and wish to proceed.");
	if (agree) {
		document.location="mailto:" + email
	}
}