// Displays Email disclaimer.

var MessageText = "This site is not intended to create, and access to or receipt of information included in this site does not constitute, a lawyer-client relationship. No one should act upon this information without seeking professional counsel. Although we would be pleased to communicate with you by e-mail or otherwise, do not send us information until you speak with one of our attorneys and get authorization to send that information to us. Please be aware that if you communicate with us by e-mail or otherwise in connection with a matter for which we do not already represent you, your communication may not be treated as privileged and confidential. If you communicate with us by e-mail in connection with a matter for which we already represent you, please remember that Internet e-mail is not secure and you may wish to take steps to encrypt sensitive or confidential materials before sending them.\n\nBy clicking \"OK\" below you understand and agree that Tarlow, Breed, Hart & Rodgers, 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 = '/downloads/' + VCardFile;
	}
}