function emailDisclaimerConfirm(emailAddress) {
	var agree=confirm("Warning: You are attempting to send an email from a link in our website via the Internet to an attorney or a staff member of Mooney & Associates. \n\nThank you for your interest in our firm but please note that your email will not be treated as a confidential communication nor will it create an attorney client relationship.  Please do not email us any information you deem confidential until we have signed a written representation agreement with you after determining there is not conflict of interest in our representation of you.\n\nPlease contact us directly by telephone at 877-632-4656 (toll free) if it is your intent to seek legal representation or to convey confidential information with our firm.\n\nIf you still want to send this email knowing that it may not be treated as confidential, you can accept these terms by pressing \"OK\". \n\nIf you chose not to accept these terms, you may navigate back to our website for more information by pressing \"Cancel\".");
	if (agree){
	parent.location= 'mailto:'+emailAddress;
	}
}

