// Displays Email disclaimer.

var MessageText = "Email Disclaimer\n\nThe information contained in the Davis, Malm & D'Agostine, P.C. web site is intended for general informational purposes only, and should not be construed as a substitute for consultation with legal counsel for specific legal planning or advice. The information on this web site may not be up to date, is not intended as legal advice and is not intended to, nor does it create an attorney-client relationship. Furthermore, contact with Davis, Malm & D'Agostine, P.C. via e-mail does not establish an attorney-client relationship. No detailed or confidential information should be sent via e-mail about a legal matter without first establishing contact with a Davis Malm attorney and determining if the attorney is able to represent you.\n\nBy clicking \"OK\" below (and thereby choosing to communicate with us without such prior approval), you understand and agree that Davis, Malm & D'Agostine, P.C. will have no duty to keep confidential any information you provide.";

function ShowEmailDisclaimer() {
	alert (MessageText);
}

// Confirms disclaimer before someone sends an Email.

function EmailAttorney(EmailAddress) {
	if (confirm(MessageText)) {
		location = 'mailto:' + EmailAddress;
	}
}

// Confirms disclaimer before opening VCard.

function AttorneyVCard(VCardFile) {
	if (confirm(MessageText)) {
		location.href = '/Attorneys/VCards/' + VCardFile;
	}
}